Home
last modified time | relevance | path

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

/external/lldb/source/Breakpoint/
DWatchpointList.cpp108 WatchpointIDMatches (lldb::watch_id_t watch_id) : in WatchpointIDMatches() argument
109 m_watch_id(watch_id) in WatchpointIDMatches()
123 WatchpointList::GetIDIterator (lldb::watch_id_t watch_id) in GetIDIterator() argument
126 WatchpointIDMatches(watch_id)); // Predicate in GetIDIterator()
130 WatchpointList::GetIDConstIterator (lldb::watch_id_t watch_id) const in GetIDConstIterator()
133 WatchpointIDMatches(watch_id)); // Predicate in GetIDConstIterator()
137 WatchpointList::FindByID (lldb::watch_id_t watch_id) const in FindByID()
141 wp_collection::const_iterator pos = GetIDConstIterator(watch_id); in FindByID()
209 WatchpointList::Remove (lldb::watch_id_t watch_id, bool notify) in Remove() argument
212 wp_collection::iterator pos = GetIDIterator(watch_id); in Remove()
[all …]
DWatchpointOptions.cpp29 …intOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id) in NullCallback() argument
127 lldb::user_id_t watch_id) in InvokeCallback() argument
133 watch_id); in InvokeCallback()
/external/lldb/source/API/
DSBWatchpoint.cpp72 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; in GetID() local
75 watch_id = watchpoint_sp->GetID(); in GetID()
79 if (watch_id == LLDB_INVALID_WATCH_ID) in GetID()
82 log->Printf ("SBWatchpoint(%p)::GetID () => %u", watchpoint_sp.get(), watch_id); in GetID()
85 return watch_id; in GetID()
/external/lldb/include/lldb/Breakpoint/
DWatchpointOptions.h124 bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t watch_id);
197 lldb::user_id_t watch_id);
/external/lldb/test/python_api/watchpoint/
DTestWatchpointIgnoreCount.py80 watch_id = watchpoint.GetID()
81 self.assertTrue(watch_id != 0)
DTestWatchpointIter.py78 watch_id = watchpoint.GetID()
79 self.assertTrue(watch_id != 0)
/external/lldb/source/Target/
DTarget.cpp901 Target::DisableWatchpointByID (lldb::watch_id_t watch_id) in DisableWatchpointByID() argument
905 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in DisableWatchpointByID()
910 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in DisableWatchpointByID()
924 Target::EnableWatchpointByID (lldb::watch_id_t watch_id) in EnableWatchpointByID() argument
928 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in EnableWatchpointByID()
933 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id); in EnableWatchpointByID()
947 Target::RemoveWatchpointByID (lldb::watch_id_t watch_id) in RemoveWatchpointByID() argument
951 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id); in RemoveWatchpointByID()
953 WatchpointSP watch_to_remove_sp = m_watchpoint_list.FindByID(watch_id); in RemoveWatchpointByID()
957 if (DisableWatchpointByID (watch_id)) in RemoveWatchpointByID()
[all …]
DStopInfo.cpp560 StopInfoWatchpoint (Thread &thread, break_id_t watch_id) : in StopInfoWatchpoint() argument
561 StopInfo(thread, watch_id), in StopInfoWatchpoint()
1098 StopInfo::CreateStopReasonWithWatchpointID (Thread &thread, break_id_t watch_id) in CreateStopReasonWithWatchpointID() argument
1100 return StopInfoSP (new StopInfoWatchpoint (thread, watch_id)); in CreateStopReasonWithWatchpointID()
/external/lldb/include/lldb/Target/
DTarget.h632 DisableWatchpointByID (lldb::watch_id_t watch_id);
635 EnableWatchpointByID (lldb::watch_id_t watch_id);
638 RemoveWatchpointByID (lldb::watch_id_t watch_id);
641 IgnoreWatchpointByID (lldb::watch_id_t watch_id, uint32_t ignore_count);
DStopInfo.h151 CreateStopReasonWithWatchpointID (Thread &thread, lldb::break_id_t watch_id);
/external/lldb/include/lldb/
Dlldb-private-interfaces.h35 …*WatchpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id);
/external/lldb/include/lldb/API/
DSBTarget.h721 DeleteWatchpoint (lldb::watch_id_t watch_id);
724 FindWatchpointByID (lldb::watch_id_t watch_id);
/external/lldb/scripts/Python/interface/
DSBTarget.i702 DeleteWatchpoint (lldb::watch_id_t watch_id);
705 FindWatchpointByID (lldb::watch_id_t watch_id);
/external/lldb/include/lldb/Interpreter/
DScriptInterpreterPython.h155 lldb::user_id_t watch_id);
/external/lldb/source/Commands/
DCommandObjectWatchpointCommand.cpp334 lldb::user_id_t watch_id) in WatchpointOptionsCallbackFunction() argument
/external/lldb/source/Interpreter/
DScriptInterpreterPython.cpp2268 user_id_t watch_id in WatchpointCallbackFunction() argument
2294 WatchpointSP wp_sp = target->GetWatchpointList().FindByID (watch_id); in WatchpointCallbackFunction()
/external/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp1632 break_id_t watch_id = LLDB_INVALID_WATCH_ID; in SetThreadStopInfo() local
1634 … thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithWatchpointID (*thread_sp, watch_id)); in SetThreadStopInfo()