Home
last modified time | relevance | path

Searched refs:GetSoftwareBreakpointTrapOpcode (Results 1 – 21 of 21) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Host/
H A DNativeProcessProtocolTest.cpp24 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 DPlatformWindows.h80 size_t GetSoftwareBreakpointTrapOpcode(Target &target,
H A DPlatformWindows.cpp565 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 DNativeProcessWindows.cpp292 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 DNativeProcessWindows.h112 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
/llvm-project-15.0.7/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp426 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 DNativeProcessFreeBSD.h98 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
H A DNativeProcessFreeBSD.cpp412 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 DPlatformDarwin.h80 size_t GetSoftwareBreakpointTrapOpcode(Target &target,
H A DPlatformDarwin.cpp413 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 DPlatformRemoteGDBServer.h73 size_t GetSoftwareBreakpointTrapOpcode(Target &target,
H A DPlatformRemoteGDBServer.cpp140 size_t PlatformRemoteGDBServer::GetSoftwareBreakpointTrapOpcode( in GetSoftwareBreakpointTrapOpcode() function in PlatformRemoteGDBServer
/llvm-project-15.0.7/lldb/unittests/TestingSupport/Host/
H A DNativeProcessTestUtils.h104 using T::GetSoftwareBreakpointTrapOpcode;
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeProcessLinux.h144 GetSoftwareBreakpointTrapOpcode(size_t size_hint) override;
H A DNativeProcessLinux.cpp1505 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 DNativeProcessProtocol.h464 GetSoftwareBreakpointTrapOpcode(size_t size_hint);
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DPlatform.h311 virtual size_t GetSoftwareBreakpointTrapOpcode(Target &target,
H A DProcess.h2004 size_t GetSoftwareBreakpointTrapOpcode(BreakpointSite *bp_site);
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp2952 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 DProcess.cpp1745 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 DPlatform.cpp1834 size_t Platform::GetSoftwareBreakpointTrapOpcode(Target &target, in GetSoftwareBreakpointTrapOpcode() function in Platform