/external/lldb/source/Breakpoint/ |
D | WatchpointList.cpp | 108 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 …]
|
D | WatchpointOptions.cpp | 29 …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/ |
D | SBWatchpoint.cpp | 72 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/ |
D | WatchpointOptions.h | 124 bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t watch_id); 197 lldb::user_id_t watch_id);
|
/external/lldb/test/python_api/watchpoint/ |
D | TestWatchpointIgnoreCount.py | 80 watch_id = watchpoint.GetID() 81 self.assertTrue(watch_id != 0)
|
D | TestWatchpointIter.py | 78 watch_id = watchpoint.GetID() 79 self.assertTrue(watch_id != 0)
|
/external/lldb/source/Target/ |
D | Target.cpp | 901 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 …]
|
D | StopInfo.cpp | 560 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/ |
D | Target.h | 632 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);
|
D | StopInfo.h | 151 CreateStopReasonWithWatchpointID (Thread &thread, lldb::break_id_t watch_id);
|
/external/lldb/include/lldb/ |
D | lldb-private-interfaces.h | 35 …*WatchpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id);
|
/external/lldb/include/lldb/API/ |
D | SBTarget.h | 721 DeleteWatchpoint (lldb::watch_id_t watch_id); 724 FindWatchpointByID (lldb::watch_id_t watch_id);
|
/external/lldb/scripts/Python/interface/ |
D | SBTarget.i | 702 DeleteWatchpoint (lldb::watch_id_t watch_id); 705 FindWatchpointByID (lldb::watch_id_t watch_id);
|
/external/lldb/include/lldb/Interpreter/ |
D | ScriptInterpreterPython.h | 155 lldb::user_id_t watch_id);
|
/external/lldb/source/Commands/ |
D | CommandObjectWatchpointCommand.cpp | 334 lldb::user_id_t watch_id) in WatchpointOptionsCallbackFunction() argument
|
/external/lldb/source/Interpreter/ |
D | ScriptInterpreterPython.cpp | 2268 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/ |
D | ProcessGDBRemote.cpp | 1632 break_id_t watch_id = LLDB_INVALID_WATCH_ID; in SetThreadStopInfo() local 1634 … thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithWatchpointID (*thread_sp, watch_id)); in SetThreadStopInfo()
|