Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DRegisterContextWindows.h45 bool RemoveHardwareBreakpoint(uint32_t slot);
DNativeThreadWindows.h49 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
DRegisterContextWindows.cpp121 bool RegisterContextWindows::RemoveHardwareBreakpoint(uint32_t slot) { in RemoveHardwareBreakpoint() function in RegisterContextWindows
DNativeThreadWindows.cpp166 Status NativeThreadWindows::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadWindows
DProcessWindows.cpp879 reg_ctx->RemoveHardwareBreakpoint(info.slot_id); in EnableWatchpoint()
911 if (!reg_ctx->RemoveHardwareBreakpoint(it->second.slot_id)) { in DisableWatchpoint()
DNativeProcessWindows.cpp309 return RemoveHardwareBreakpoint(addr); in RemoveBreakpoint()
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeThreadProtocol.h48 virtual Status RemoveHardwareBreakpoint(lldb::addr_t addr) = 0;
DNativeProcessProtocol.h150 virtual Status RemoveHardwareBreakpoint(lldb::addr_t addr);
/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp262 rollback_thread_sp->RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
280 Status NativeProcessProtocol::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeProcessProtocol
289 error = thread->RemoveHardwareBreakpoint(addr); in RemoveHardwareBreakpoint()
633 return RemoveHardwareBreakpoint(addr); in RemoveBreakpoint()
/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/
DNativeThreadFreeBSD.cpp250 Status error = RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
263 Status NativeThreadFreeBSD::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadFreeBSD
DNativeThreadFreeBSD.h48 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeThreadNetBSD.h48 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
DNativeThreadNetBSD.cpp267 Status error = RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
280 Status NativeThreadNetBSD::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadNetBSD
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DNativeThreadLinux.h52 Status RemoveHardwareBreakpoint(lldb::addr_t addr) override;
DNativeThreadLinux.cpp179 Status error = RemoveHardwareBreakpoint(addr); in SetHardwareBreakpoint()
192 Status NativeThreadLinux::RemoveHardwareBreakpoint(lldb::addr_t addr) { in RemoveHardwareBreakpoint() function in NativeThreadLinux
DNativeProcessLinux.cpp1507 return RemoveHardwareBreakpoint(addr); in RemoveBreakpoint()