Home
last modified time | relevance | path

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

/llvm-project-15.0.7/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;
/llvm-project-15.0.7/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h47 virtual Status RemoveWatchpoint(lldb::addr_t addr) = 0;
H A DNativeProcessProtocol.h180 virtual Status RemoveWatchpoint(lldb::addr_t addr);
/llvm-project-15.0.7/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
/llvm-project-15.0.7/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
/llvm-project-15.0.7/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
/llvm-project-15.0.7/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp195 Status remove_error = unwatch_thread_sp->RemoveWatchpoint(addr); in SetWatchpoint()
207 Status NativeProcessProtocol::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeProcessProtocol
217 const Status thread_error = thread->RemoveWatchpoint(addr); in RemoveWatchpoint()
/llvm-project-15.0.7/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2993 const Status error = m_current_process->RemoveWatchpoint(addr); in Handle_z()