reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Host/common/NativeProcessProtocol.h
  446   Status SetSoftwareBreakpoint(lldb::addr_t addr, uint32_t size_hint);

References

tools/lldb/source/Plugins/Process/Linux/NativeProcessLinux.cpp
 1002       error = SetSoftwareBreakpoint(next_pc, 2);
 1005       error = SetSoftwareBreakpoint(next_pc, 4);
 1008     error = SetSoftwareBreakpoint(next_pc, 4);
 1011     error = SetSoftwareBreakpoint(next_pc, 0);
 1401     return SetSoftwareBreakpoint(addr, size);
tools/lldb/unittests/TestingSupport/Host/NativeProcessTestUtils.h
   62       return this->SetSoftwareBreakpoint(Addr, Size);