Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeThreadProtocol.h43 virtual Status RemoveWatchpoint(lldb::addr_t addr) = 0;
H A DNativeProcessProtocol.h169 virtual Status RemoveWatchpoint(lldb::addr_t addr);
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
H A DNativeThreadNetBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadNetBSD.cpp266 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
277 Status NativeThreadNetBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadNetBSD
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
H A DNativeThreadFreeBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
H A DNativeThreadFreeBSD.cpp254 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
265 Status NativeThreadFreeBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadFreeBSD
/freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/
H A DNativeProcessProtocol.cpp194 Status remove_error = unwatch_thread_sp->RemoveWatchpoint(addr); in SetWatchpoint()
206 Status NativeProcessProtocol::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeProcessProtocol
216 const Status thread_error = thread->RemoveWatchpoint(addr); in RemoveWatchpoint()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteCommunicationServerLLGS.cpp2764 const Status error = m_current_process->RemoveWatchpoint(addr); in Handle_z()