Home
last modified time | relevance | path

Searched refs:break_id (Results 1 – 25 of 51) sorted by relevance

123

/freebsd-14-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDBreakpointLocationCollection.cpp46 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()
HDBreakpointList.cpp47 bool BreakpointList::Remove(break_id_t break_id, bool notify) { in Remove() argument
52 [&](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()
HDBreakpointLocationList.cpp42 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()
HDBreakpointSite.cpp128 size_t BreakpointSite::RemoveConstituent(lldb::break_id_t break_id, in RemoveConstituent() argument
131 m_constituents.Remove(break_id, break_loc_id); in RemoveConstituent()
/freebsd-14-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/
HDBreakpointLocationCollection.h46 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,
HDBreakpointOptions.h226 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,
HDBreakpointID.h91 static void GetCanonicalReference(Stream *s, lldb::break_id_t break_id,
/freebsd-14-stable/contrib/llvm-project/lldb/source/API/
HDSBBreakpointOptionCommon.cpp50 void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id, in PrivateBreakpointHitCallback() argument
52 LLDB_INSTRUMENT_VA(baton, ctx, break_id, break_loc_id); in PrivateBreakpointHitCallback()
55 exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id)); in PrivateBreakpointHitCallback()
HDSBBreakpoint.cpp93 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()
HDSBBreakpointOptionCommon.h31 lldb::user_id_t break_id,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
HDInstrumentationRuntimeASan.cpp64 void *baton, StoppointCallbackContext *context, user_id_t break_id, in NotifyBreakpointHit() argument
75 return ReportRetriever::NotifyBreakpointHit(process_sp, context, break_id, in NotifyBreakpointHit()
HDInstrumentationRuntimeASan.h49 lldb::user_id_t break_id,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
HDInstrumentationRuntimeASanLibsanitizers.cpp70 void *baton, StoppointCallbackContext *context, user_id_t break_id, in NotifyBreakpointHit() argument
81 return ReportRetriever::NotifyBreakpointHit(process_sp, context, break_id, in NotifyBreakpointHit()
HDInstrumentationRuntimeASanLibsanitizers.h49 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
HDDynamicLoaderHexagonDYLD.h77 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-14-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
HDDynamicLoaderPOSIXDYLD.h105 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);
HDDynamicLoaderPOSIXDYLD.cpp257 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-14-stable/contrib/llvm-project/lldb/include/lldb/Target/
HDStopInfo.h110 lldb::break_id_t break_id);
115 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd-14-stable/contrib/llvm-project/lldb/source/Target/
HDStopInfo.cpp89 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()
HDTarget.cpp328 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-14-stable/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
HDScriptedThread.cpp252 lldb::break_id_t break_id; in CalculateStopInfo() local
253 data_dict->GetValueForKeyAsInteger("break_id", break_id, in CalculateStopInfo()
256 StopInfo::CreateStopReasonWithBreakpointSiteID(*this, break_id); in CalculateStopInfo()
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
HDReportRetriever.h26 lldb::user_id_t break_id,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
HDInstrumentationRuntimeUBSan.h58 lldb::user_id_t break_id,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
HDInstrumentationRuntimeMainThreadChecker.h56 lldb::user_id_t break_id,
/freebsd-14-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
HDJITLoaderGDB.h63 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);

123