Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Plugins/Process/Windows/Common/
DNativeThreadWindows.cpp139 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
150 Status NativeThreadWindows::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadWindows
DNativeThreadWindows.h45 Status RemoveWatchpoint(lldb::addr_t addr) override;
/external/llvm-project/lldb/include/lldb/Host/common/
DNativeThreadProtocol.h43 virtual Status RemoveWatchpoint(lldb::addr_t addr) = 0;
DNativeProcessProtocol.h161 virtual Status RemoveWatchpoint(lldb::addr_t addr);
/external/llvm-project/lldb/source/Plugins/Process/FreeBSDRemote/
DNativeThreadFreeBSD.cpp225 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
236 Status NativeThreadFreeBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadFreeBSD
DNativeThreadFreeBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
/external/llvm-project/lldb/source/Plugins/Process/NetBSD/
DNativeThreadNetBSD.h44 Status RemoveWatchpoint(lldb::addr_t addr) override;
DNativeThreadNetBSD.cpp242 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
253 Status NativeThreadNetBSD::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadNetBSD
/external/llvm-project/lldb/source/Plugins/Process/Linux/
DNativeThreadLinux.h48 Status RemoveWatchpoint(lldb::addr_t addr) override;
DNativeThreadLinux.cpp152 Status error = RemoveWatchpoint(addr); in SetWatchpoint()
163 Status NativeThreadLinux::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeThreadLinux
/external/llvm-project/lldb/source/Host/common/
DNativeProcessProtocol.cpp183 Status remove_error = unwatch_thread_sp->RemoveWatchpoint(addr); in SetWatchpoint()
195 Status NativeProcessProtocol::RemoveWatchpoint(lldb::addr_t addr) { in RemoveWatchpoint() function in NativeProcessProtocol
205 const Status thread_error = thread->RemoveWatchpoint(addr); in RemoveWatchpoint()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DGDBRemoteCommunicationServerLLGS.cpp2767 const Status error = m_debugged_process_up->RemoveWatchpoint(addr); in Handle_z()