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 operator ()()
100 WatchpointList::GetIDIterator(lldb::watch_id_t watch_id) { in GetIDIterator()
103 WatchpointIDMatches(watch_id)); // Predicate
107 WatchpointList::GetIDConstIterator(lldb::watch_id_t watch_id) const { in GetIDConstIterator()
110 WatchpointIDMatches(watch_id)); // Predicate
113 WatchpointSP WatchpointList::FindByID(lldb::watch_id_t watch_id) const { in FindByID()
116 wp_collection::const_iterator pos = GetIDConstIterator(watch_id); in FindByID()
169 bool WatchpointList::Remove(lldb::watch_id_t watch_id, bool notify) { in Remove()
171 wp_collection::iterator pos = GetIDIterator(watch_id); in Remove()
87 WatchpointIDMatches(lldb::watch_id_t watch_id) WatchpointIDMatches() argument
98 GetIDIterator(lldb::watch_id_t watch_id) GetIDIterator() argument
167 Remove(lldb::watch_id_t watch_id,bool notify) Remove() argument
196 ShouldStop(StoppointCallbackContext * context,lldb::watch_id_t watch_id) 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()
56 watch_id = watchpoint_sp->GetID(); in GetID()
58 return watch_id; in GetID()
54 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; GetID() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h72 lldb::user_id_t watch_id);
H A DScriptInterpreterLua.cpp299 void *baton, StoppointCallbackContext *context, user_id_t watch_id) { in WatchpointCallbackFunction() argument
308 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp674 StopInfoWatchpoint(Thread &thread, break_id_t watch_id, bool silently_skip_wp) in StopInfoWatchpoint() argument
675 : StopInfo(thread, watch_id), m_silently_skip_wp(silently_skip_wp) {} in StopInfoWatchpoint()
1380 break_id_t watch_id, in CreateStopReasonWithWatchpointID() argument
1383 new StopInfoWatchpoint(thread, watch_id, silently_continue)); in CreateStopReasonWithWatchpointID()
H A DTarget.cpp1352 bool Target::DisableWatchpointByID(lldb::watch_id_t watch_id) { in DisableWatchpointByID() argument
1354 LLDB_LOGF(log, "Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in DisableWatchpointByID()
1359 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in DisableWatchpointByID()
1371 bool Target::EnableWatchpointByID(lldb::watch_id_t watch_id) { in EnableWatchpointByID() argument
1373 LLDB_LOGF(log, "Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in EnableWatchpointByID()
1378 WatchpointSP wp_sp = m_watchpoint_list.FindByID(watch_id); in EnableWatchpointByID()
1390 bool Target::RemoveWatchpointByID(lldb::watch_id_t watch_id) { in RemoveWatchpointByID() argument
1392 LLDB_LOGF(log, "Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in RemoveWatchpointByID()
1394 WatchpointSP watch_to_remove_sp = m_watchpoint_list.FindByID(watch_id); in RemoveWatchpointByID()
1398 if (DisableWatchpointByID(watch_id)) { in RemoveWatchpointByID()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h118 CreateStopReasonWithWatchpointID(Thread &thread, lldb::break_id_t watch_id,
H A DTarget.h837 bool DisableWatchpointByID(lldb::watch_id_t watch_id);
839 bool EnableWatchpointByID(lldb::watch_id_t watch_id);
841 bool RemoveWatchpointByID(lldb::watch_id_t watch_id);
843 bool IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count);
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBTarget.h839 bool DeleteWatchpoint(lldb::watch_id_t watch_id);
841 lldb::SBWatchpoint FindWatchpointByID(lldb::watch_id_t watch_id);
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h108 lldb::user_id_t watch_id);
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp232 lldb::user_id_t watch_id) { in WatchpointOptionsCallbackFunction() argument
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPythonImpl.h348 lldb::user_id_t watch_id);
H A DScriptInterpreterPython.cpp1972 void *baton, StoppointCallbackContext *context, user_id_t watch_id) { in WatchpointCallbackFunction() argument
1995 WatchpointSP wp_sp = target->GetWatchpointList().FindByID(watch_id); in WatchpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1821 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in SetThreadStopInfo() local
1839 watch_id = LLDB_INVALID_SITE_ID; in SetThreadStopInfo()
1845 watch_id = wp_resource_sp->GetConstituentAtIndex(0)->GetID(); in SetThreadStopInfo()
1848 *thread_sp, watch_id, silently_continue)); in SetThreadStopInfo()