Searched defs:watch_id (Results 1 - 7 of 7) sorted by relevance

/external/lldb/source/Breakpoint/
H A DWatchpointOptions.cpp29 WatchpointOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id) argument
127 lldb::user_id_t watch_id)
133 watch_id);
126 InvokeCallback(StoppointCallbackContext *context, lldb::user_id_t watch_id) argument
H A DWatchpointList.cpp108 WatchpointIDMatches (lldb::watch_id_t watch_id) : argument
109 m_watch_id(watch_id)
123 WatchpointList::GetIDIterator (lldb::watch_id_t watch_id) argument
126 WatchpointIDMatches(watch_id)); // Predicate
130 WatchpointList::GetIDConstIterator (lldb::watch_id_t watch_id) const
133 WatchpointIDMatches(watch_id)); // Predicate
137 WatchpointList::FindByID (lldb::watch_id_t watch_id) const
141 wp_collection::const_iterator pos = GetIDConstIterator(watch_id);
209 WatchpointList::Remove (lldb::watch_id_t watch_id, bool notify) argument
212 wp_collection::iterator pos = GetIDIterator(watch_id);
240 ShouldStop(StoppointCallbackContext *context, lldb::watch_id_t watch_id) argument
[all...]
/external/lldb/source/API/
H A DSBWatchpoint.cpp72 watch_id_t watch_id = LLDB_INVALID_WATCH_ID; local
75 watch_id = watchpoint_sp->GetID();
79 if (watch_id == LLDB_INVALID_WATCH_ID)
82 log->Printf ("SBWatchpoint(%p)::GetID () => %u", watchpoint_sp.get(), watch_id);
85 return watch_id;
/external/lldb/source/Commands/
H A DCommandObjectWatchpointCommand.cpp334 lldb::user_id_t watch_id)
332 WatchpointOptionsCallbackFunction(void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id) argument
/external/lldb/source/Target/
H A DStopInfo.cpp560 StopInfoWatchpoint (Thread &thread, break_id_t watch_id) : argument
561 StopInfo(thread, watch_id),
1098 StopInfo::CreateStopReasonWithWatchpointID (Thread &thread, break_id_t watch_id) argument
1100 return StopInfoSP (new StopInfoWatchpoint (thread, watch_id));
H A DTarget.cpp901 Target::DisableWatchpointByID (lldb::watch_id_t watch_id) argument
905 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id);
910 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id);
924 Target::EnableWatchpointByID (lldb::watch_id_t watch_id) argument
928 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id);
933 WatchpointSP wp_sp = m_watchpoint_list.FindByID (watch_id);
947 Target::RemoveWatchpointByID (lldb::watch_id_t watch_id) argument
951 log->Printf ("Target::%s (watch_id
967 IgnoreWatchpointByID(lldb::watch_id_t watch_id, uint32_t ignore_count) argument
[all...]
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1632 break_id_t watch_id = LLDB_INVALID_WATCH_ID; local
1634 thread_sp->SetStopInfo (StopInfo::CreateStopReasonWithWatchpointID (*thread_sp, watch_id));

Completed in 5716 milliseconds