Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/AIX/
H A DNativeThreadAIX.h35 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadAIX.cpp34 Status NativeThreadAIX::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadAIX
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h47 virtual Status RemoveWatchpoint(lldb::addr_t addr) = 0;
H A DNativeProcessProtocol.h177 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.cpp267 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
278 Status NativeThreadNetBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadNetBSD
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.cpp256 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
267 Status NativeThreadFreeBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadFreeBSD
H A DNativeThreadFreeBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
/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 Status thread_error = thread->RemoveWatchpoint(addr); in RemoveWatchpoint()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2998 const Status error = m_current_process->RemoveWatchpoint(addr); in Handle_z()