/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | WatchpointList.cpp | 89 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 D | WatchpointOptions.cpp | 24 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 D | Watchpoint.cpp | 149 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 D | Watchpoint.h | 104 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 D | WatchpointOptions.h | 105 /// \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 D | SBWatchpoint.cpp | 53 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 D | ScriptInterpreterLua.h | 72 lldb::user_id_t watch_id);
|
H A D | ScriptInterpreterLua.cpp | 299 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 D | StopInfo.cpp | 674 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 D | Target.cpp | 1352 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 D | StopInfo.h | 118 CreateStopReasonWithWatchpointID(Thread &thread, lldb::break_id_t watch_id,
|
H A D | Target.h | 837 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 D | SBTarget.h | 839 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 D | lldb-private-interfaces.h | 108 lldb::user_id_t watch_id);
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectWatchpointCommand.cpp | 232 lldb::user_id_t watch_id) { in WatchpointOptionsCallbackFunction() argument
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
H A D | ScriptInterpreterPythonImpl.h | 348 lldb::user_id_t watch_id);
|
H A D | ScriptInterpreterPython.cpp | 1972 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 D | ProcessGDBRemote.cpp | 1821 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()
|