HomeSort by relevance Sort by last modified time
    Searched refs:watch_id (Results 1 - 17 of 17) sorted by null

  /external/lldb/source/Breakpoint/
WatchpointList.cpp 108 WatchpointIDMatches (lldb::watch_id_t watch_id) :
109 m_watch_id(watch_id)
123 WatchpointList::GetIDIterator (lldb::watch_id_t watch_id)
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)
212 wp_collection::iterator pos = GetIDIterator(watch_id);
    [all...]
WatchpointOptions.cpp 29 WatchpointOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id)
127 lldb::user_id_t watch_id)
133 watch_id);
  /external/lldb/include/lldb/Breakpoint/
WatchpointOptions.h 118 /// @param[in] watch_id
124 bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t watch_id);
197 lldb::user_id_t watch_id);
  /external/lldb/source/API/
SBWatchpoint.cpp 72 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/test/python_api/watchpoint/
TestWatchpointIgnoreCount.py 80 watch_id = watchpoint.GetID()
81 self.assertTrue(watch_id != 0)
TestWatchpointIter.py 78 watch_id = watchpoint.GetID()
79 self.assertTrue(watch_id != 0)
  /external/lldb/include/lldb/Target/
StopInfo.h 151 CreateStopReasonWithWatchpointID (Thread &thread, lldb::break_id_t watch_id);
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);
    [all...]
  /external/lldb/include/lldb/
lldb-private-interfaces.h 35 typedef bool (*WatchpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t watch_id);
  /external/lldb/source/Target/
StopInfo.cpp 560 StopInfoWatchpoint (Thread &thread, break_id_t watch_id) :
561 StopInfo(thread, watch_id),
    [all...]
Target.cpp 901 Target::DisableWatchpointByID (lldb::watch_id_t watch_id)
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)
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)
951 log->Printf ("Target::%s (watch_id = %i)\n", __FUNCTION__, watch_id)
    [all...]
  /external/lldb/include/lldb/API/
SBTarget.h 721 DeleteWatchpoint (lldb::watch_id_t watch_id);
724 FindWatchpointByID (lldb::watch_id_t watch_id);
  /external/lldb/include/lldb/Interpreter/
ScriptInterpreterPython.h 155 lldb::user_id_t watch_id);
  /external/lldb/scripts/Python/interface/
SBTarget.i 702 DeleteWatchpoint (lldb::watch_id_t watch_id);
705 FindWatchpointByID (lldb::watch_id_t watch_id);
  /external/lldb/source/Commands/
CommandObjectWatchpointCommand.cpp 334 lldb::user_id_t watch_id)
    [all...]
  /external/lldb/source/Interpreter/
ScriptInterpreterPython.cpp     [all...]
  /external/lldb/source/Plugins/Process/gdb-remote/
ProcessGDBRemote.cpp 1632 break_id_t watch_id = LLDB_INVALID_WATCH_ID; local
    [all...]

Completed in 973 milliseconds