Home
last modified time | relevance | path

Searched refs:watch_id (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DWatchpointList.cpp89 WatchpointIDMatches(lldb::watch_id_t watch_id) : m_watch_id(watch_id) {} in WatchpointIDMatches() argument
100 WatchpointList::GetIDIterator(lldb::watch_id_t watch_id) { in GetIDIterator() argument
102 WatchpointIDMatches(watch_id)); // Predicate in GetIDIterator()
106 WatchpointList::GetIDConstIterator(lldb::watch_id_t watch_id) const { in GetIDConstIterator()
108 WatchpointIDMatches(watch_id)); // Predicate in GetIDConstIterator()
111 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const { in FindByID()
114 wp_collection::const_iterator pos = GetIDConstIterator(watch_id); in FindByID()
167 bool WatchpointList::Remove(lldb::watch_id_t watch_id, bool notify) { in Remove() argument
169 wp_collection::iterator pos = GetIDIterator(watch_id); in Remove()
197 lldb::watch_id_t watch_id) { in ShouldStop() argument
[all …]
H A DWatchpointOptions.cpp24 lldb::user_id_t watch_id) { in NullCallback() argument
90 lldb::user_id_t watch_id) { in InvokeCallback() argument
94 context, watch_id); in InvokeCallback()
H A DWatchpoint.cpp149 if (wvc->watch_id == LLDB_INVALID_WATCH_ID) in VariableWatchpointDisabler()
161 target_sp->GetWatchpointList().FindByID(wvc->watch_id); in VariableWatchpointDisabler()
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DWatchpoint.h104 WatchpointVariableContext(lldb::watch_id_t watch_id, in WatchpointVariableContext()
106 : watch_id(watch_id), exe_ctx(exe_ctx) {} in WatchpointVariableContext()
108 lldb::watch_id_t watch_id; ///< The ID of the watchpoint. member
H A DWatchpointOptions.h105 /// \param[in] watch_id
111 lldb::user_id_t watch_id);
161 lldb::user_id_t watch_id);
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBWatchpoint.cpp53 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in GetID() local
56 watch_id = watchpoint_sp->GetID(); in GetID()
58 return watch_id; in GetID()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h73 lldb::user_id_t watch_id);
H A DScriptInterpreterLua.cpp312 void *baton, StoppointCallbackContext *context, user_id_t watch_id) { in WatchpointCallbackFunction() argument
321 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp695 StopInfoWatchpoint(Thread &thread, break_id_t watch_id, bool silently_skip_wp) in StopInfoWatchpoint() argument
696 : StopInfo(thread, watch_id), m_silently_skip_wp(silently_skip_wp) {} in StopInfoWatchpoint()
1490 break_id_t watch_id, in CreateStopReasonWithWatchpointID() argument
1493 new StopInfoWatchpoint(thread, watch_id, silently_continue)); in CreateStopReasonWithWatchpointID()
H A DTarget.cpp1442 bool Target::DisableWatchpointByID(lldb::watch_id_t watch_id) { in DisableWatchpointByID() argument
1444 LLDB_LOGF(log, "Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in DisableWatchpointByID()
1449 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in DisableWatchpointByID()
1461 bool Target::EnableWatchpointByID(lldb::watch_id_t watch_id) { in EnableWatchpointByID() argument
1463 LLDB_LOGF(log, "Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in EnableWatchpointByID()
1468 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in EnableWatchpointByID()
1480 bool Target::RemoveWatchpointByID(lldb::watch_id_t watch_id) { in RemoveWatchpointByID() argument
1482 LLDB_LOGF(log, "Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in RemoveWatchpointByID()
1484 WatchpointSP watch_to_remove_sp = m_watchpoint_list.FindByID(watch_id); in RemoveWatchpointByID()
1488 if (DisableWatchpointByID(watch_id)) { in RemoveWatchpointByID()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h144 CreateStopReasonWithWatchpointID(Thread &thread, lldb::break_id_t watch_id,
H A DTarget.h869 bool DisableWatchpointByID(lldb::watch_id_t watch_id);
871 bool EnableWatchpointByID(lldb::watch_id_t watch_id);
873 bool RemoveWatchpointByID(lldb::watch_id_t watch_id);
875 bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h856 bool DeleteWatchpoint(lldb::watch_id_t watch_id);
858 lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id);
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h110 lldb::user_id_t watch_id);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp236 lldb::user_id_t watch_id) { in WatchpointOptionsCallbackFunction() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h354 lldb::user_id_t watch_id);
H A DScriptInterpreterPython.cpp1939 void *baton, StoppointCallbackContext *context, user_id_t watch_id) { in WatchpointCallbackFunction() argument
1962 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1872 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in SetThreadStopInfo() local
1890 watch_id = LLDB_INVALID_SITE_ID; in SetThreadStopInfo()
1896 watch_id = wp_resource_sp->GetConstituentAtIndex(0)->GetID(); in SetThreadStopInfo()
1899 *thread_sp, watch_id, silently_continue)); in SetThreadStopInfo()