Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/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);
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadNetBSD.cpp268 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
279 Status NativeThreadNetBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadNetBSD
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadFreeBSD.cpp256 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
267 Status NativeThreadFreeBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadFreeBSD
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2997 const Status error = m_current_process->RemoveWatchpoint(addr); in Handle_z()