| /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 65 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairIterator() 70 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const { in GetIDPairConstIterator() argument 73 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate in GetIDPairConstIterator() 77 BreakpointLocationCollection::FindByIDPair(lldb::break_id_t break_id, in FindByIDPair() argument 80 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id); in FindByIDPair() 88 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const { in FindByIDPair() argument 91 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() argument 51 return bp->GetID() == break_id; in Remove() 111 BreakpointList::GetBreakpointIDIterator(break_id_t break_id) { in GetBreakpointIDIterator() argument 113 return bp->GetID() == break_id; in GetBreakpointIDIterator() 118 BreakpointList::GetBreakpointIDConstIterator(break_id_t break_id) const { in GetBreakpointIDConstIterator() 120 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()
|
| H A D | BreakpointLocationList.cpp | 44 lldb::break_id_t break_id) { in ShouldStop() argument 45 BreakpointLocationSP bp = FindByID(break_id); in ShouldStop() 70 BreakpointLocationList::FindByID(lldb::break_id_t break_id) const { in FindByID() 74 llvm::lower_bound(m_locations, break_id, Compare); in FindByID() 75 if (pos != end && (*pos)->GetID() == break_id) in FindByID()
|
| H A D | BreakpointSite.cpp | 145 size_t BreakpointSite::RemoveConstituent(lldb::break_id_t break_id, in RemoveConstituent() argument 148 m_constituents.Remove(break_id, break_loc_id); in RemoveConstituent()
|
| /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 | 227 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 332 lldb::user_id_t break_id, 369 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() 825 for (lldb::break_id_t &break_id : m_break_ids) { in FindBreakpointByID() 826 if (break_id == desired_id) in FindBreakpointByID() 827 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 | 107 lldb::user_id_t break_id, lldb::user_id_t break_loc_id); 145 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
|
| H A D | DynamicLoaderPOSIXDYLD.cpp | 266 void *baton, StoppointCallbackContext *context, user_id_t break_id, in EntryBreakpointHit() argument 288 dyld_instance->m_process->GetTarget().GetBreakpointByID(break_id); in EntryBreakpointHit() 293 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit() 299 __FUNCTION__, dyld_instance->m_process->GetID(), break_id); in EntryBreakpointHit() 305 __FUNCTION__, break_id); in EntryBreakpointHit() 392 void *baton, StoppointCallbackContext *context, user_id_t break_id, in RendezvousBreakpointHit() argument
|
| /freebsd/contrib/llvm-project/lldb/source/Target/ |
| H A D | StopInfo.cpp | 90 StopInfoBreakpoint(Thread &thread, break_id_t break_id) in StopInfoBreakpoint() argument 91 : StopInfo(thread, break_id), m_should_stop(false), in StopInfoBreakpoint() 98 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) in StopInfoBreakpoint() argument 99 : StopInfo(thread, break_id), m_should_stop(should_stop), in StopInfoBreakpoint() 1475 break_id_t break_id) { in CreateStopReasonWithBreakpointSiteID() argument 1478 return StopInfoSP(new StopInfoBreakpoint(thread, break_id)); in CreateStopReasonWithBreakpointSiteID() 1482 break_id_t break_id, in CreateStopReasonWithBreakpointSiteID() argument 1484 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop)); in CreateStopReasonWithBreakpointSiteID()
|
| H A D | Target.cpp | 413 BreakpointSP Target::GetBreakpointByID(break_id_t break_id) { in GetBreakpointByID() argument 416 if (LLDB_BREAK_ID_IS_INTERNAL(break_id)) in GetBreakpointByID() 417 bp_sp = m_internal_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 419 bp_sp = m_breakpoint_list.FindBreakpointByID(break_id); in GetBreakpointByID() 1094 bool Target::RemoveBreakpointByID(break_id_t break_id) { in RemoveBreakpointByID() argument 1097 break_id, LLDB_BREAK_ID_IS_INTERNAL(break_id) ? "yes" : "no"); in RemoveBreakpointByID() 1099 if (DisableBreakpointByID(break_id)) { in RemoveBreakpointByID() 1100 if (LLDB_BREAK_ID_IS_INTERNAL(break_id)) in RemoveBreakpointByID() 1101 m_internal_breakpoint_list.Remove(break_id, false); in RemoveBreakpointByID() 1104 if (m_last_created_breakpoint->GetID() == break_id) in RemoveBreakpointByID() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | StopInfo.h | 136 lldb::break_id_t break_id); 141 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 | 263 lldb::break_id_t break_id; in CalculateStopInfo() local 264 data_dict->GetValueForKeyAsInteger("break_id", break_id, in CalculateStopInfo() 267 StopInfo::CreateStopReasonWithBreakpointSiteID(*this, break_id); in CalculateStopInfo()
|
| /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,
|