HomeSort by relevance Sort by last modified time
    Searched refs:break_id (Results 1 - 25 of 42) sorted by null

1 2

  /external/lldb/include/lldb/Breakpoint/
BreakpointLocationCollection.h 46 /// @param[in] break_id
50 /// The breakpoint location index in break_id to remove.
56 Remove (lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
62 /// @param[in] break_id
66 /// The breakpoint location ID in \a break_id to seek for.
73 FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
83 /// The breakpoint location ID in \a break_id to seek for.
90 FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const;
198 GetIDPairIterator(lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
201 GetIDPairConstIterator(lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const
    [all...]
BreakpointID.h 84 /// @param[out] break_id
92 ParseCanonicalReference (const char *input, lldb::break_id_t *break_id, lldb::break_id_t *break_loc_id);
100 /// @param[out] break_id
108 GetCanonicalReference (Stream *s, lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
BreakpointOptions.h 131 /// @param[in] break_id
140 bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
294 lldb::user_id_t break_id,
BreakpointSite.h 268 RemoveOwner (lldb::break_id_t break_id,
  /external/lldb/source/Breakpoint/
BreakpointLocationCollection.cpp 64 BreakpointIDPairMatches (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) :
65 m_break_id(break_id),
82 BreakpointLocationCollection::GetIDPairIterator (lldb::break_id_t break_id, lldb::break_id_t break_loc_id)
85 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
89 BreakpointLocationCollection::GetIDPairConstIterator (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const
92 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
96 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id)
99 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
107 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const
110 collection::const_iterator pos = GetIDPairConstIterator(break_id, break_loc_id)
    [all...]
BreakpointList.cpp 52 BreakpointList::Remove (break_id_t break_id, bool notify)
55 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); // Predicate
106 BreakpointIDMatches (break_id_t break_id) :
107 m_break_id(break_id)
121 BreakpointList::GetBreakpointIDIterator (break_id_t break_id)
124 BreakpointIDMatches(break_id)); // Predicate
128 BreakpointList::GetBreakpointIDConstIterator (break_id_t break_id) const
131 BreakpointIDMatches(break_id)); // Predicate
135 BreakpointList::FindBreakpointByID (break_id_t break_id)
139 bp_collection::iterator pos = GetBreakpointIDIterator(break_id);
    [all...]
BreakpointSiteList.cpp 82 BreakpointSiteList::Remove (lldb::break_id_t break_id)
85 collection::iterator pos = GetIDIterator(break_id); // Predicate
110 BreakpointSiteIDMatches (lldb::break_id_t break_id) :
111 m_break_id(break_id)
125 BreakpointSiteList::GetIDIterator (lldb::break_id_t break_id)
129 BreakpointSiteIDMatches(break_id)); // Predicate
133 BreakpointSiteList::GetIDConstIterator (lldb::break_id_t break_id) const
137 BreakpointSiteIDMatches(break_id)); // Predicate
141 BreakpointSiteList::FindByID (lldb::break_id_t break_id)
145 collection::iterator pos = GetIDIterator(break_id);
    [all...]
BreakpointLocationList.cpp 51 BreakpointLocationList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t break_id)
53 BreakpointLocationSP bp = FindByID (break_id);
78 BreakpointLocationList::FindByID (lldb::break_id_t break_id) const
84 uint32_t idx = break_id - 1;
BreakpointSite.cpp 169 BreakpointSite::RemoveOwner (lldb::break_id_t break_id, lldb::break_id_t break_loc_id)
171 m_owners.Remove(break_id, break_loc_id);
BreakpointOptions.cpp 29 BreakpointOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id)
142 lldb::user_id_t break_id,
149 break_id,
  /external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DynamicLoaderPOSIXDYLD.h 108 lldb::user_id_t break_id,
143 lldb::user_id_t break_id,
DynamicLoaderPOSIXDYLD.cpp 259 user_id_t break_id,
291 user_id_t break_id,
  /external/lldb/include/lldb/Target/
StopInfo.h 144 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id);
148 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
Target.h 496 GetBreakpointByID (lldb::break_id_t break_id);
605 DisableBreakpointByID (lldb::break_id_t break_id);
608 EnableBreakpointByID (lldb::break_id_t break_id);
611 RemoveBreakpointByID (lldb::break_id_t break_id);
    [all...]
  /external/lldb/source/API/
SBBreakpoint.cpp 116 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
118 break_id = m_opaque_sp->GetID();
122 if (break_id == LLDB_INVALID_BREAK_ID)
125 log->Printf ("SBBreakpoint(%p)::GetID () => %u", m_opaque_sp.get(), break_id);
128 return break_id;
173 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
184 break_id = m_opaque_sp->FindLocationIDByAddress (address);
187 return break_id;
531 lldb::user_id_t break_id,
536 BreakpointSP bp_sp(exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id));
    [all...]
  /external/lldb/source/Target/
StopInfo.cpp 112 StopInfoBreakpoint (Thread &thread, break_id_t break_id) :
113 StopInfo (thread, break_id),
125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) :
126 StopInfo (thread, break_id),
    [all...]
Target.cpp 234 Target::GetBreakpointByID (break_id_t break_id)
238 if (LLDB_BREAK_ID_IS_INTERNAL (break_id))
239 bp_sp = m_internal_breakpoint_list.FindBreakpointByID (break_id);
241 bp_sp = m_breakpoint_list.FindBreakpointByID (break_id);
516 log->Printf ("Target::%s (internal = %s) => break_id = %s\n", __FUNCTION__, internal ? "yes" : "no", s.GetData());
681 Target::RemoveBreakpointByID (break_id_t break_id)
685 log->Printf ("Target::%s (break_id = %i, internal = %s)\n", __FUNCTION__, break_id, LLDB_BREAK_ID_IS_INTERNAL (break_id) ? "yes" : "no");
687 if (DisableBreakpointByID (break_id))
    [all...]
  /external/lldb/include/lldb/API/
SBBreakpoint.h 167 lldb::user_id_t break_id,
SBTarget.h 700 BreakpointDelete (break_id_t break_id);
703 FindBreakpointByID (break_id_t break_id);
  /external/lldb/include/lldb/
lldb-private-interfaces.h 34 typedef bool (*BreakpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
  /external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
DynamicLoaderDarwinKernel.h 109 lldb::user_id_t break_id,
114 lldb::user_id_t break_id,
  /external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
AppleObjCTrampolineHandler.h 168 lldb::user_id_t break_id,
  /external/v8/src/
debug-debugger.js 232 function IsBreakPointTriggered(break_id, break_point) {
233 return break_point.isTriggered(MakeExecutionState(break_id));
931 function MakeExecutionState(break_id) {
932 return new ExecutionState(break_id);
935 function ExecutionState(break_id) {
936 this.break_id = break_id;
950 return %PrepareStep(this.break_id, action, count, callFrameId);
955 return MakeMirror(%DebugEvaluateGlobal(this.break_id, source,
961 return %GetFrameCount(this.break_id);
    [all...]
  /external/lldb/include/lldb/Interpreter/
ScriptInterpreterPython.h 149 lldb::user_id_t break_id,
  /external/lldb/scripts/Python/interface/
SBTarget.i 681 BreakpointDelete (break_id_t break_id);
684 FindBreakpointByID (break_id_t break_id);

Completed in 7543 milliseconds

1 2