/external/lldb/source/Breakpoint/ |
D | BreakpointLocationCollection.cpp | 64 BreakpointIDPairMatches (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) : in BreakpointIDPairMatches() argument 65 m_break_id(break_id), in BreakpointIDPairMatches() 82 BreakpointLocationCollection::GetIDPairIterator (lldb::break_id_t break_id, lldb::break_id_t break_… in GetIDPairIterator() argument 85 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairIterator() 89 BreakpointLocationCollection::GetIDPairConstIterator (lldb::break_id_t break_id, lldb::break_id_t b… in GetIDPairConstIterator() argument 92 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairConstIterator() 96 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_i… in FindByIDPair() argument 99 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id); in FindByIDPair() 107 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_i… in FindByIDPair() argument 110 collection::const_iterator pos = GetIDPairConstIterator(break_id, break_loc_id); in FindByIDPair()
|
D | BreakpointSiteList.cpp | 82 BreakpointSiteList::Remove (lldb::break_id_t break_id) in Remove() argument 85 collection::iterator pos = GetIDIterator(break_id); // Predicate in Remove() 110 BreakpointSiteIDMatches (lldb::break_id_t break_id) : in BreakpointSiteIDMatches() argument 111 m_break_id(break_id) in BreakpointSiteIDMatches() 125 BreakpointSiteList::GetIDIterator (lldb::break_id_t break_id) in GetIDIterator() argument 129 BreakpointSiteIDMatches(break_id)); // Predicate in GetIDIterator() 133 BreakpointSiteList::GetIDConstIterator (lldb::break_id_t break_id) const in GetIDConstIterator() 137 BreakpointSiteIDMatches(break_id)); // Predicate in GetIDConstIterator() 141 BreakpointSiteList::FindByID (lldb::break_id_t break_id) in FindByID() argument 145 collection::iterator pos = GetIDIterator(break_id); in FindByID() [all …]
|
D | BreakpointList.cpp | 52 BreakpointList::Remove (break_id_t break_id, bool notify) in Remove() argument 55 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); // Predicate in Remove() 106 BreakpointIDMatches (break_id_t break_id) : in BreakpointIDMatches() argument 107 m_break_id(break_id) in BreakpointIDMatches() 121 BreakpointList::GetBreakpointIDIterator (break_id_t break_id) in GetBreakpointIDIterator() argument 124 BreakpointIDMatches(break_id)); // Predicate in GetBreakpointIDIterator() 128 BreakpointList::GetBreakpointIDConstIterator (break_id_t break_id) const in GetBreakpointIDConstIterator() 131 BreakpointIDMatches(break_id)); // Predicate in GetBreakpointIDConstIterator() 135 BreakpointList::FindBreakpointByID (break_id_t break_id) in FindBreakpointByID() argument 139 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); in FindBreakpointByID() [all …]
|
D | BreakpointLocationList.cpp | 51 BreakpointLocationList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t break_id) in ShouldStop() argument 53 BreakpointLocationSP bp = FindByID (break_id); in ShouldStop() 78 BreakpointLocationList::FindByID (lldb::break_id_t break_id) const in FindByID() 84 uint32_t idx = break_id - 1; in FindByID()
|
D | BreakpointOptions.cpp | 29 …llback (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t … in NullCallback() argument 142 lldb::user_id_t break_id, in InvokeCallback() argument 149 break_id, in InvokeCallback()
|
D | BreakpointSite.cpp | 169 BreakpointSite::RemoveOwner (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) in RemoveOwner() argument 171 m_owners.Remove(break_id, break_loc_id); in RemoveOwner()
|
/external/lldb/include/lldb/Breakpoint/ |
D | BreakpointLocationCollection.h | 56 Remove (lldb::break_id_t break_id, lldb::break_id_t break_loc_id); 73 FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id); 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;
|
D | BreakpointID.h | 92 …ParseCanonicalReference (const char *input, lldb::break_id_t *break_id, lldb::break_id_t *break_lo… 108 GetCanonicalReference (Stream *s, lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
|
D | BreakpointOptions.h | 140 …bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t … 294 lldb::user_id_t break_id,
|
D | BreakpointSite.h | 268 RemoveOwner (lldb::break_id_t break_id,
|
/external/lldb/source/API/ |
D | SBBreakpoint.cpp | 116 break_id_t break_id = LLDB_INVALID_BREAK_ID; in GetID() local 118 break_id = m_opaque_sp->GetID(); in GetID() 122 if (break_id == LLDB_INVALID_BREAK_ID) in GetID() 125 log->Printf ("SBBreakpoint(%p)::GetID () => %u", m_opaque_sp.get(), break_id); in GetID() 128 return break_id; in GetID() 173 break_id_t break_id = LLDB_INVALID_BREAK_ID; in FindLocationIDByAddress() local 184 break_id = m_opaque_sp->FindLocationIDByAddress (address); in FindLocationIDByAddress() 187 return break_id; in FindLocationIDByAddress() 531 lldb::user_id_t break_id, in PrivateBreakpointHitCallback() argument 536 BreakpointSP bp_sp(exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id)); in PrivateBreakpointHitCallback()
|
/external/lldb/source/Target/ |
D | Target.cpp | 234 Target::GetBreakpointByID (break_id_t break_id) in GetBreakpointByID() argument 238 if (LLDB_BREAK_ID_IS_INTERNAL (break_id)) in GetBreakpointByID() 239 bp_sp = m_internal_breakpoint_list.FindBreakpointByID (break_id); in GetBreakpointByID() 241 bp_sp = m_breakpoint_list.FindBreakpointByID (break_id); in GetBreakpointByID() 681 Target::RemoveBreakpointByID (break_id_t break_id) in RemoveBreakpointByID() argument 685 …::%s (break_id = %i, internal = %s)\n", __FUNCTION__, break_id, LLDB_BREAK_ID_IS_INTERNAL (break_i… in RemoveBreakpointByID() 687 if (DisableBreakpointByID (break_id)) in RemoveBreakpointByID() 689 if (LLDB_BREAK_ID_IS_INTERNAL (break_id)) in RemoveBreakpointByID() 690 m_internal_breakpoint_list.Remove(break_id, false); in RemoveBreakpointByID() 695 if (m_last_created_breakpoint->GetID() == break_id) in RemoveBreakpointByID() [all …]
|
D | StopInfo.cpp | 112 StopInfoBreakpoint (Thread &thread, break_id_t break_id) : in StopInfoBreakpoint() argument 113 StopInfo (thread, break_id), in StopInfoBreakpoint() 125 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : in StopInfoBreakpoint() argument 126 StopInfo (thread, break_id), in StopInfoBreakpoint() 1086 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id) in CreateStopReasonWithBreakpointSiteID() argument 1088 return StopInfoSP (new StopInfoBreakpoint (thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1092 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_st… in CreateStopReasonWithBreakpointSiteID() argument 1094 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
D | DynamicLoaderPOSIXDYLD.h | 108 lldb::user_id_t break_id, 143 lldb::user_id_t break_id,
|
D | DynamicLoaderPOSIXDYLD.cpp | 259 user_id_t break_id, in EntryBreakpointHit() argument 291 user_id_t break_id, in RendezvousBreakpointHit() argument
|
/external/chromium_org/v8/src/ |
D | debug-debugger.js | 232 function IsBreakPointTriggered(break_id, break_point) { argument 233 return break_point.isTriggered(MakeExecutionState(break_id)); 931 function MakeExecutionState(break_id) { argument 932 return new ExecutionState(break_id); 935 function ExecutionState(break_id) { argument 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); 965 return %GetThreadCount(this.break_id); [all …]
|
D | mirror-debugger.js | 1635 function FrameDetails(break_id, index) { argument 1636 this.break_id_ = break_id; 1637 this.details_ = %GetFrameDetails(break_id, index); 1791 function FrameMirror(break_id, index) { argument 1793 this.break_id_ = break_id; 1795 this.details_ = new FrameDetails(break_id, index);
|
/external/lldb/include/lldb/Target/ |
D | 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);
|
D | 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);
|
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.h | 109 lldb::user_id_t break_id, 114 lldb::user_id_t break_id,
|
/external/lldb/include/lldb/ |
D | lldb-private-interfaces.h | 34 …lback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t …
|
/external/lldb/include/lldb/API/ |
D | SBBreakpoint.h | 167 lldb::user_id_t break_id,
|
D | SBTarget.h | 700 BreakpointDelete (break_id_t break_id); 703 FindBreakpointByID (break_id_t break_id);
|
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
D | AppleObjCTrampolineHandler.h | 168 lldb::user_id_t break_id,
|
/external/lldb/scripts/Python/interface/ |
D | SBTarget.i | 681 BreakpointDelete (break_id_t break_id); 684 FindBreakpointByID (break_id_t break_id);
|