/freebsd/contrib/llvm-project/lldb/source/Breakpoint/ |
H A D | BreakpointSiteList.cpp |
|
H A D | BreakpointLocationCollection.cpp | 46 BreakpointIDPairMatches(lldb::break_id_t break_id, in BreakpointIDPairMatches() argument 48 : m_break_id(break_id), m_break_loc_id(break_loc_id) {} in BreakpointIDPairMatches() 61 BreakpointLocationCollection::GetIDPairIterator(lldb::break_id_t break_id, in GetIDPairIterator() argument 66 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairIterator() 71 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const { in GetIDPairConstIterator() argument 75 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairConstIterator() 79 BreakpointLocationCollection::FindByIDPair(lldb::break_id_t break_id, in FindByIDPair() argument 82 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id); in FindByIDPair() 90 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const { in FindByIDPair() argument 93 GetIDPairConstIterator(break_id, break_loc_id); in FindByIDPair()
|
H A D | BreakpointList.cpp | 47 bool BreakpointList::Remove(break_id_t break_id, bool notify) { in Remove() 52 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in Remove() 111 BreakpointList::GetBreakpointIDIterator(break_id_t break_id) { in GetBreakpointIDIterator() 114 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); 118 BreakpointList::GetBreakpointIDConstIterator(break_id_t break_id) const { in GetBreakpointIDConstIterator() 121 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; }); in FindBreakpointByID() 124 BreakpointSP BreakpointList::FindBreakpointByID(break_id_t break_id) const { in FindBreakpointByID() 127 auto it = GetBreakpointIDConstIterator(break_id); in FindBreakpointByID() 44 Remove(break_id_t break_id,bool notify) Remove() argument 108 GetBreakpointIDIterator(break_id_t break_id) GetBreakpointIDIterator() argument
|
H A D | BreakpointLocationList.cpp | 42 lldb::break_id_t break_id) { in ShouldStop() argument 43 BreakpointLocationSP bp = FindByID(break_id); in ShouldStop() 68 BreakpointLocationList::FindByID(lldb::break_id_t break_id) const { in FindByID() 72 llvm::lower_bound(m_locations, break_id, Compare); in FindByID() 73 if (pos != end && (*pos)->GetID() == break_id) in FindByID()
|
H A D | BreakpointSite.cpp | 128 size_t BreakpointSite::RemoveConstituent(lldb::break_id_t break_id, in AddOwner() 131 m_constituents.Remove(break_id, break_loc_id); in RemoveOwner() 130 RemoveOwner(lldb::break_id_t break_id,lldb::break_id_t break_loc_id) RemoveOwner() argument
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
H A 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,
|
H A D | BreakpointOptions.h | 226 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 334 lldb::user_id_t break_id, 371 void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
|
H A D | BreakpointID.h | 91 static void GetCanonicalReference(Stream *s, lldb::break_id_t break_id,
|
/freebsd/contrib/llvm-project/lldb/source/API/ |
H A D | SBBreakpointOptionCommon.cpp | 50 void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id, in PrivateBreakpointHitCallback() 52 LLDB_INSTRUMENT_VA(baton, ctx, break_id, break_loc_id); in PrivateBreakpointHitCallback() 55 exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id)); in PrivateBreakpointHitCallback() 51 PrivateBreakpointHitCallback(void * baton,StoppointCallbackContext * ctx,lldb::user_id_t break_id,lldb::user_id_t break_loc_id) PrivateBreakpointHitCallback() argument
|
H A D | SBBreakpoint.cpp | 93 break_id_t break_id = LLDB_INVALID_BREAK_ID; in GetID() local 96 break_id = bkpt_sp->GetID(); in GetID() 98 return break_id; in GetID() 152 break_id_t break_id = LLDB_INVALID_BREAK_ID; in FindLocationIDByAddress() local 163 break_id = bkpt_sp->FindLocationIDByAddress(address); in FindLocationIDByAddress() 166 return break_id; in FindLocationIDByAddress() 812 for (lldb::break_id_t &break_id : m_break_ids) { in FindBreakpointByID() 813 if (break_id == desired_id) in FindBreakpointByID() 814 return target_sp->GetBreakpointList().FindBreakpointByID(break_id); in FindBreakpointByID()
|
H A D | SBBreakpointOptionCommon.h | 31 lldb::user_id_t break_id,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/ |
H A D | InstrumentationRuntimeASanLibsanitizers.cpp | 70 void *baton, StoppointCallbackContext *context, user_id_t break_id, in NotifyBreakpointHit() argument 81 return ReportRetriever::NotifyBreakpointHit(process_sp, context, break_id, in NotifyBreakpointHit()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
H A D | DynamicLoaderHexagonDYLD.h | 77 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 108 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
H A D | DynamicLoaderPOSIXDYLD.h | 105 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 143 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
H A D | DynamicLoaderPOSIXDYLD.cpp | 257 void *baton, StoppointCallbackContext *context, user_id_t break_id, in EntryBreakpointHit() argument 279 dyld_instance->m_process->GetTarget().GetBreakpointByID(break_id); in EntryBreakpointHit() 284 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit() 290 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit() 296 __FUNCTION__, break_id); in EntryBreakpointHit() 383 void *baton, StoppointCallbackContext *context, user_id_t break_id, in RendezvousBreakpointHit() argument
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | StopInfo.cpp | 89 StopInfoBreakpoint(Thread &thread, break_id_t break_id) in StopInfoBreakpoint() argument 90 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint() 97 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument 98 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint() 1367 break_id_t break_id) { in CreateStopReasonWithBreakpointSiteID() argument 1368 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1372 break_id_t break_id, in CreateStopReasonWithBreakpointSiteID() argument 1374 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
H A D | Target.cpp | 328 BreakpointSP Target::GetBreakpointByID(break_id_t break_id) { in GetBreakpointByID() argument 331 if (LLDB_BREAK_ID_IS_INTERNAL(break_id)) in GetBreakpointByID() 332 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 334 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 1004 bool Target::RemoveBreakpointByID(break_id_t break_id) { in RemoveBreakpointByID() argument 1007 break_id, LLDB_BREAK_ID_IS_INTERNAL(break_id) ? "yes" : "no"); in RemoveBreakpointByID() 1009 if (DisableBreakpointByID(break_id)) { in RemoveBreakpointByID() 1010 if (LLDB_BREAK_ID_IS_INTERNAL(break_id)) in RemoveBreakpointByID() 1011 m_internal_breakpoint_list.Remove(break_id, false); in RemoveBreakpointByID() 1014 if (m_last_created_breakpoint->GetID() == break_id) in RemoveBreakpointByID() [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | StopInfo.h | 110 lldb::break_id_t break_id); 115 Thread &thread, lldb::break_id_t break_id, bool should_stop);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/scripted/ |
H A D | ScriptedThread.cpp | 252 lldb::break_id_t break_id; in CalculateStopInfo() 253 data_dict->GetValueForKeyAsInteger("break_id", break_id, in CalculateStopInfo() 256 StopInfo::CreateStopReasonWithBreakpointSiteID(*this, break_id); in CalculateStopInfo() 246 lldb::break_id_t break_id; CalculateStopInfo() local
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/ |
H A D | InstrumentationRuntimeASan.h | 49 lldb::user_id_t break_id,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/ |
H A D | InstrumentationRuntimeMainThreadChecker.h | 56 lldb::user_id_t break_id,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/ |
H A D | InstrumentationRuntimeUBSan.h | 58 lldb::user_id_t break_id,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/ |
H A D | JITLoaderGDB.h | 63 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/ |
H A D | InstrumentationRuntimeTSan.h | 55 lldb::user_id_t break_id,
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
H A D | StructuredDataDarwinLog.h | 81 lldb::user_id_t break_id,
|