/external/llvm-project/lldb/source/Breakpoint/ |
D | BreakpointSiteList.cpp | 63 bool BreakpointSiteList::Remove(lldb::break_id_t break_id) { in Remove() argument 65 collection::iterator pos = GetIDIterator(break_id); // Predicate in Remove() 85 BreakpointSiteIDMatches(lldb::break_id_t break_id) : m_break_id(break_id) {} in BreakpointSiteIDMatches() argument 96 BreakpointSiteList::GetIDIterator(lldb::break_id_t break_id) { in GetIDIterator() argument 100 BreakpointSiteIDMatches(break_id)); // Predicate in GetIDIterator() 104 BreakpointSiteList::GetIDConstIterator(lldb::break_id_t break_id) const { in GetIDConstIterator() 108 BreakpointSiteIDMatches(break_id)); // Predicate in GetIDConstIterator() 111 BreakpointSiteSP BreakpointSiteList::FindByID(lldb::break_id_t break_id) { in FindByID() argument 114 collection::iterator pos = GetIDIterator(break_id); in FindByID() 122 BreakpointSiteList::FindByID(lldb::break_id_t break_id) const { in FindByID() [all …]
|
D | BreakpointLocationCollection.cpp | 47 BreakpointIDPairMatches(lldb::break_id_t break_id, in BreakpointIDPairMatches() argument 49 : m_break_id(break_id), m_break_loc_id(break_loc_id) {} in BreakpointIDPairMatches() 62 BreakpointLocationCollection::GetIDPairIterator(lldb::break_id_t break_id, in GetIDPairIterator() argument 67 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairIterator() 72 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const { in GetIDPairConstIterator() argument 76 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairConstIterator() 80 BreakpointLocationCollection::FindByIDPair(lldb::break_id_t break_id, in FindByIDPair() argument 83 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id); in FindByIDPair() 91 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const { in FindByIDPair() argument 94 GetIDPairConstIterator(break_id, break_loc_id); in FindByIDPair()
|
D | BreakpointList.cpp | 45 bool BreakpointList::Remove(break_id_t break_id, bool notify) { in Remove() argument 50 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in Remove() 111 BreakpointList::GetBreakpointIDIterator(break_id_t break_id) { in GetBreakpointIDIterator() argument 114 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in GetBreakpointIDIterator() 118 BreakpointList::GetBreakpointIDConstIterator(break_id_t break_id) const { in GetBreakpointIDConstIterator() 121 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in GetBreakpointIDConstIterator() 124 BreakpointSP BreakpointList::FindBreakpointByID(break_id_t break_id) const { in FindBreakpointByID() 127 auto it = GetBreakpointIDConstIterator(break_id); in FindBreakpointByID()
|
D | BreakpointLocationList.cpp | 43 lldb::break_id_t break_id) { in ShouldStop() argument 44 BreakpointLocationSP bp = FindByID(break_id); in ShouldStop() 69 BreakpointLocationList::FindByID(lldb::break_id_t break_id) const { in FindByID() 73 std::lower_bound(m_locations.begin(), end, break_id, Compare); in FindByID() 74 if (pos != end && (*pos)->GetID() == break_id) in FindByID()
|
D | BreakpointSite.cpp | 130 size_t BreakpointSite::RemoveOwner(lldb::break_id_t break_id, in RemoveOwner() argument 133 m_owners.Remove(break_id, break_loc_id); in RemoveOwner()
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | BreakpointLocationCollection.h | 46 bool Remove(lldb::break_id_t break_id, lldb::break_id_t break_loc_id); 60 lldb::BreakpointLocationSP FindByIDPair(lldb::break_id_t break_id, 76 FindByIDPair(lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const; 157 collection::iterator GetIDPairIterator(lldb::break_id_t break_id, 161 GetIDPairConstIterator(lldb::break_id_t break_id,
|
D | BreakpointOptions.h | 228 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 336 lldb::user_id_t break_id, 373 void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
|
D | BreakpointID.h | 87 static void GetCanonicalReference(Stream *s, lldb::break_id_t break_id,
|
/external/llvm-project/lldb/source/API/ |
D | SBBreakpointOptionCommon.cpp | 51 lldb::user_id_t break_id, in PrivateBreakpointHitCallback() argument 56 exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id)); in PrivateBreakpointHitCallback()
|
D | SBBreakpoint.cpp | 97 break_id_t break_id = LLDB_INVALID_BREAK_ID; in GetID() local 100 break_id = bkpt_sp->GetID(); in GetID() 102 return break_id; in GetID() 158 break_id_t break_id = LLDB_INVALID_BREAK_ID; in FindLocationIDByAddress() local 169 break_id = bkpt_sp->FindLocationIDByAddress(address); in FindLocationIDByAddress() 172 return break_id; in FindLocationIDByAddress() 848 for (lldb::break_id_t &break_id : m_break_ids) { in FindBreakpointByID() 849 if (break_id == desired_id) in FindBreakpointByID() 850 return target_sp->GetBreakpointList().FindBreakpointByID(break_id); in FindBreakpointByID()
|
D | SBBreakpointOptionCommon.h | 31 lldb::user_id_t break_id,
|
/external/llvm-project/lldb/test/API/functionalities/thread/ignore_suspended/ |
D | TestIgnoreSuspendedThread.py | 28 break_id = thread.GetStopReasonDataAtIndex(0) 30 ' stopped at breakpoint ' + str(break_id))
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
D | DynamicLoaderHexagonDYLD.h | 79 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 110 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
D | DynamicLoaderPOSIXDYLD.h | 96 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 131 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
D | DynamicLoaderPOSIXDYLD.cpp | 263 void *baton, StoppointCallbackContext *context, user_id_t break_id, in EntryBreakpointHit() argument 285 dyld_instance->m_process->GetTarget().GetBreakpointByID(break_id); in EntryBreakpointHit() 290 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit() 296 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit() 302 __FUNCTION__, break_id); in EntryBreakpointHit() 384 void *baton, StoppointCallbackContext *context, user_id_t break_id, in RendezvousBreakpointHit() argument
|
/external/llvm-project/lldb/include/lldb/Target/ |
D | StopInfo.h | 105 lldb::break_id_t break_id); 110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
|
/external/llvm-project/lldb/source/Target/ |
D | StopInfo.cpp | 86 StopInfoBreakpoint(Thread &thread, break_id_t break_id) in StopInfoBreakpoint() argument 87 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint() 94 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument 95 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint() 1099 break_id_t break_id) { in CreateStopReasonWithBreakpointSiteID() argument 1100 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1104 break_id_t break_id, in CreateStopReasonWithBreakpointSiteID() argument 1106 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
D | Target.cpp | 301 BreakpointSP Target::GetBreakpointByID(break_id_t break_id) { in GetBreakpointByID() argument 304 if (LLDB_BREAK_ID_IS_INTERNAL(break_id)) in GetBreakpointByID() 305 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 307 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 922 bool Target::RemoveBreakpointByID(break_id_t break_id) { in RemoveBreakpointByID() argument 925 break_id, LLDB_BREAK_ID_IS_INTERNAL(break_id) ? "yes" : "no"); in RemoveBreakpointByID() 927 if (DisableBreakpointByID(break_id)) { in RemoveBreakpointByID() 928 if (LLDB_BREAK_ID_IS_INTERNAL(break_id)) in RemoveBreakpointByID() 929 m_internal_breakpoint_list.Remove(break_id, false); in RemoveBreakpointByID() 932 if (m_last_created_breakpoint->GetID() == break_id) in RemoveBreakpointByID() [all …]
|
/external/llvm-project/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/ |
D | DynamicLoaderDarwinKernel.h | 82 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 85 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
/external/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
D | ScriptInterpreterLua.cpp | 181 void *baton, StoppointCallbackContext *context, user_id_t break_id, in BreakpointCallbackFunction() argument 191 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction()
|
D | ScriptInterpreterLua.h | 55 lldb::user_id_t break_id,
|
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
D | InstrumentationRuntimeASan.h | 56 lldb::user_id_t break_id,
|
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
D | InstrumentationRuntimeUBSan.h | 60 lldb::user_id_t break_id,
|
/external/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
D | InstrumentationRuntimeMainThreadChecker.h | 60 lldb::user_id_t break_id,
|
/external/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
D | JITLoaderGDB.h | 65 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|