Searched refs:break_id (Results 1 - 25 of 42) sorted by relevance

12

/external/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h46 /// @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, lld
[all...]
H A DBreakpointID.h84 /// @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);
H A DBreakpointOptions.h131 /// @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,
H A DBreakpointSite.h268 RemoveOwner (lldb::break_id_t break_id,
/external/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp64 BreakpointIDPairMatches (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) : argument
65 m_break_id(break_id),
82 BreakpointLocationCollection::GetIDPairIterator (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) argument
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 argument
92 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
96 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) argument
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 argument
110 collection::const_iterator pos = GetIDPairConstIterator(break_id, break_loc_i
[all...]
H A DBreakpointList.cpp52 BreakpointList::Remove (break_id_t break_id, bool notify) argument
55 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); // Predicate
106 BreakpointIDMatches (break_id_t break_id) : argument
107 m_break_id(break_id)
121 BreakpointList::GetBreakpointIDIterator (break_id_t break_id) argument
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) argument
139 bp_collection::iterator pos = GetBreakpointIDIterator(break_id);
[all...]
H A DBreakpointSiteList.cpp82 BreakpointSiteList::Remove (lldb::break_id_t break_id) argument
85 collection::iterator pos = GetIDIterator(break_id); // Predicate
110 BreakpointSiteIDMatches (lldb::break_id_t break_id) : argument
111 m_break_id(break_id)
125 BreakpointSiteList::GetIDIterator (lldb::break_id_t break_id) argument
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) argument
145 collection::iterator pos = GetIDIterator(break_id);
[all...]
H A DBreakpointLocationList.cpp51 BreakpointLocationList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t break_id) argument
53 BreakpointLocationSP bp = FindByID (break_id);
78 BreakpointLocationList::FindByID (lldb::break_id_t break_id) const
84 uint32_t idx = break_id - 1;
H A DBreakpointSite.cpp169 BreakpointSite::RemoveOwner (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) argument
171 m_owners.Remove(break_id, break_loc_id);
H A DBreakpointOptions.cpp29 BreakpointOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
142 lldb::user_id_t break_id,
149 break_id,
141 InvokeCallback(StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h108 lldb::user_id_t break_id,
143 lldb::user_id_t break_id,
H A DDynamicLoaderPOSIXDYLD.cpp259 user_id_t break_id,
291 user_id_t break_id,
257 EntryBreakpointHit(void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
289 RendezvousBreakpointHit(void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
/external/lldb/include/lldb/Target/
H A DStopInfo.h144 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id);
148 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
H A DTarget.h496 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);
/external/lldb/source/API/
H A DSBBreakpoint.cpp116 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));
527 PrivateBreakpointHitCallback( void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id, lldb::user_id_t break_loc_id ) argument
[all...]
/external/lldb/source/Target/
H A DStopInfo.cpp112 StopInfoBreakpoint (Thread &thread, break_id_t break_id) : argument
113 StopInfo (thread, break_id),
125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : argument
126 StopInfo (thread, break_id),
1086 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id) argument
1088 return StopInfoSP (new StopInfoBreakpoint (thread, break_id));
1092 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_stop) argument
1094 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop));
H A DTarget.cpp234 Target::GetBreakpointByID (break_id_t break_id) argument
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) argument
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))
706 DisableBreakpointByID(break_id_t break_id) argument
727 EnableBreakpointByID(break_id_t break_id) argument
[all...]
/external/v8/src/
H A Ddebug-debugger.js232 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/API/
H A DSBBreakpoint.h167 lldb::user_id_t break_id,
H A DSBTarget.h700 BreakpointDelete (break_id_t break_id);
703 FindBreakpointByID (break_id_t break_id);
/external/lldb/include/lldb/
H A Dlldb-private-interfaces.h34 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/
H A DDynamicLoaderDarwinKernel.h109 lldb::user_id_t break_id,
114 lldb::user_id_t break_id,
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.h168 lldb::user_id_t break_id,
/external/lldb/scripts/Python/interface/
H A DSBTarget.i681 BreakpointDelete (break_id_t break_id);
684 FindBreakpointByID (break_id_t break_id);
/external/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderMacOSXDYLD.h117 lldb::user_id_t break_id,

Completed in 528 milliseconds

12