| /llvm-project-15.0.7/lldb/unittests/Host/ |
| H A D | NativeProcessProtocolTest.cpp | 24 auto Trap = cantFail(Process.GetSoftwareBreakpointTrapOpcode(1)); in TEST() 49 auto Trap = cantFail(Process.GetSoftwareBreakpointTrapOpcode(1)); in TEST() 64 auto Trap = cantFail(Process.GetSoftwareBreakpointTrapOpcode(1)); in TEST()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/ |
| H A D | PlatformWindows.h | 80 size_t GetSoftwareBreakpointTrapOpcode(Target &target,
|
| H A D | PlatformWindows.cpp | 565 PlatformWindows::GetSoftwareBreakpointTrapOpcode(Target &target, in GetSoftwareBreakpointTrapOpcode() function in PlatformWindows 595 return Platform::GetSoftwareBreakpointTrapOpcode(target, bp_site); in GetSoftwareBreakpointTrapOpcode()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/ |
| H A D | NativeProcessWindows.cpp | 292 NativeProcessWindows::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { in GetSoftwareBreakpointTrapOpcode() function in lldb_private::NativeProcessWindows 305 return NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_hint); in GetSoftwareBreakpointTrapOpcode() 312 return cantFail(GetSoftwareBreakpointTrapOpcode(0)).size(); in GetSoftwareBreakpointPCOffset()
|
| H A D | NativeProcessWindows.h | 112 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
|
| /llvm-project-15.0.7/lldb/source/Host/common/ |
| H A D | NativeProcessProtocol.cpp | 426 auto expected_trap = GetSoftwareBreakpointTrapOpcode(size_hint); in EnableSoftwareBreakpoint() 500 NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { in GetSoftwareBreakpointTrapOpcode() function in NativeProcessProtocol 548 return cantFail(GetSoftwareBreakpointTrapOpcode(0)).size(); in GetSoftwareBreakpointPCOffset()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | NativeProcessFreeBSD.h | 98 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
|
| H A D | NativeProcessFreeBSD.cpp | 412 NativeProcessFreeBSD::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { in GetSoftwareBreakpointTrapOpcode() function in NativeProcessFreeBSD 428 return NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_hint); in GetSoftwareBreakpointTrapOpcode()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/ |
| H A D | PlatformDarwin.h | 80 size_t GetSoftwareBreakpointTrapOpcode(Target &target,
|
| H A D | PlatformDarwin.cpp | 413 PlatformDarwin::GetSoftwareBreakpointTrapOpcode(Target &target, in GetSoftwareBreakpointTrapOpcode() function in PlatformDarwin 460 return Platform::GetSoftwareBreakpointTrapOpcode(target, bp_site); in GetSoftwareBreakpointTrapOpcode()
|
| /llvm-project-15.0.7/lldb/source/Plugins/Platform/gdb-server/ |
| H A D | PlatformRemoteGDBServer.h | 73 size_t GetSoftwareBreakpointTrapOpcode(Target &target,
|
| H A D | PlatformRemoteGDBServer.cpp | 140 size_t PlatformRemoteGDBServer::GetSoftwareBreakpointTrapOpcode( in GetSoftwareBreakpointTrapOpcode() function in PlatformRemoteGDBServer
|
| /llvm-project-15.0.7/lldb/unittests/TestingSupport/Host/ |
| H A D | NativeProcessTestUtils.h | 104 using T::GetSoftwareBreakpointTrapOpcode;
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/ |
| H A D | NativeProcessLinux.h | 144 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
|
| H A D | NativeProcessLinux.cpp | 1505 NativeProcessLinux::GetSoftwareBreakpointTrapOpcode(size_t size_hint) { in GetSoftwareBreakpointTrapOpcode() function in NativeProcessLinux 1523 return NativeProcessProtocol::GetSoftwareBreakpointTrapOpcode(size_hint); in GetSoftwareBreakpointTrapOpcode()
|
| /llvm-project-15.0.7/lldb/include/lldb/Host/common/ |
| H A D | NativeProcessProtocol.h | 464 GetSoftwareBreakpointTrapOpcode(size_t size_hint);
|
| /llvm-project-15.0.7/lldb/include/lldb/Target/ |
| H A D | Platform.h | 311 virtual size_t GetSoftwareBreakpointTrapOpcode(Target &target,
|
| H A D | Process.h | 2004 size_t GetSoftwareBreakpointTrapOpcode(BreakpointSite *bp_site);
|
| /llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | ProcessGDBRemote.cpp | 2952 const size_t bp_op_size = GetSoftwareBreakpointTrapOpcode(bp_site); in EnableBreakpointSite() 3061 const size_t bp_op_size = GetSoftwareBreakpointTrapOpcode(bp_site); in DisableBreakpointSite() 5202 GetSoftwareBreakpointTrapOpcode(bp_site), GetInterruptTimeout()); in DidForkSwitchSoftwareBreakpoints() 5214 GetSoftwareBreakpointTrapOpcode(bp_site), GetInterruptTimeout()); in DidForkSwitchHardwareTraps()
|
| /llvm-project-15.0.7/lldb/source/Target/ |
| H A D | Process.cpp | 1745 size_t Process::GetSoftwareBreakpointTrapOpcode(BreakpointSite *bp_site) { in GetSoftwareBreakpointTrapOpcode() function in Process 1748 return platform_sp->GetSoftwareBreakpointTrapOpcode(GetTarget(), bp_site); in GetSoftwareBreakpointTrapOpcode() 1775 const size_t bp_opcode_size = GetSoftwareBreakpointTrapOpcode(bp_site); in EnableSoftwareBreakpoint()
|
| H A D | Platform.cpp | 1834 size_t Platform::GetSoftwareBreakpointTrapOpcode(Target &target, in GetSoftwareBreakpointTrapOpcode() function in Platform
|