Home
last modified time | relevance | path

Searched refs:RemoveHardwareBreakpoint (Results 1 – 16 of 16) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/
H A DRegisterContextWindows.h45 bool RemoveHardwareBreakpoint(uint32_t slot);
H A DNativeThreadWindows.h49 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
H A DRegisterContextWindows.cpp121 bool RegisterContextWindows::RemoveHardwareBreakpoint(uint32_t slot) { in RemoveHardwareBreakpoint() function in RegisterContextWindows
H A DNativeThreadWindows.cpp184 Status NativeThreadWindows::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadWindows
H A DProcessWindows.cpp892 reg_ctx->RemoveHardwareBreakpoint(info.slot_id); in EnableWatchpoint()
924 if (!reg_ctx->RemoveHardwareBreakpoint(it->second.slot_id)) { in DisableWatchpoint()
H A DNativeProcessWindows.cpp332 return RemoveHardwareBreakpoint(addr); in RemoveBreakpoint()
/llvm-project-15.0.7/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h52 virtual Status RemoveHardwareBreakpoint(lldb::addr_t addr) = 0;
H A DNativeProcessProtocol.h169 virtual Status RemoveHardwareBreakpoint(lldb::addr_t addr);
/llvm-project-15.0.7/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp274 rollback_thread_sp->RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
292 Status NativeProcessProtocol::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeProcessProtocol
301 error = thread->RemoveHardwareBreakpoint(addr); in RemoveHardwareBreakpoint()
621 return RemoveHardwareBreakpoint(addr); in RemoveBreakpoint()
/llvm-project-15.0.7/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h48 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
H A DNativeThreadNetBSD.cpp294 Status error = RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
307 Status NativeThreadNetBSD::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadNetBSD
/llvm-project-15.0.7/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.h48 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
H A DNativeThreadFreeBSD.cpp282 Status error = RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
295 Status NativeThreadFreeBSD::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadFreeBSD
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeThreadLinux.h54 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
H A DNativeThreadLinux.cpp184 Status error = RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
197 Status NativeThreadLinux::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadLinux
H A DNativeProcessLinux.cpp1499 return RemoveHardwareBreakpoint(addr); in RemoveBreakpoint()