Home
last modified time | relevance | path

Searched refs:RemoveWatchpoint (Results 1 – 14 of 14) sorted by relevance

/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/
H A DNativeThreadWindows.cpp157 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
168 Status NativeThreadWindows::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadWindows
H A DNativeThreadWindows.h45 Status RemoveWatchpoint(lldb::addr_t addr) override;
/openbsd-src/gnu/llvm/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h47 virtual Status RemoveWatchpoint(lldb::addr_t addr) = 0;
H A DNativeProcessProtocol.h181 virtual Status RemoveWatchpoint(lldb::addr_t addr);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/OpenBSD/
H A DNativeThreadOpenBSD.h51 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadOpenBSD.cpp141 Status NativeThreadOpenBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadOpenBSD
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadNetBSD.cpp269 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
280 Status NativeThreadNetBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadNetBSD
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadFreeBSD.cpp257 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
268 Status NativeThreadFreeBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadFreeBSD
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/Linux/
H A DNativeThreadLinux.h50 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadLinux.cpp157 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
168 Status NativeThreadLinux::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadLinux
/openbsd-src/gnu/llvm/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp196 Status remove_error = unwatch_thread_sp->RemoveWatchpoint(addr); in SetWatchpoint()
208 Status NativeProcessProtocol::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeProcessProtocol
218 const Status thread_error = thread->RemoveWatchpoint(addr); in RemoveWatchpoint()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2998 const Status error = m_current_process->RemoveWatchpoint(addr); in Handle_z()