Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp
H A DBreakpointLocationCollection.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()
H A DBreakpointList.cpp47 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 DBreakpointLocationList.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()
H A DBreakpointSite.cpp128 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 DBreakpointLocationCollection.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,
H A DBreakpointOptions.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,
H A DBreakpointID.h91 static void GetCanonicalReference(Stream *s, lldb::break_id_t break_id,
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointOptionCommon.cpp50 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 DSBBreakpoint.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()
H A DSBBreakpointOptionCommon.h31 lldb::user_id_t break_id,
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
H A DInstrumentationRuntimeASanLibsanitizers.cpp70 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 DDynamicLoaderHexagonDYLD.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/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.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);
H A DDynamicLoaderPOSIXDYLD.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/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.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()
H A DTarget.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/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h110 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 DScriptedThread.cpp252 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 DInstrumentationRuntimeASan.h49 lldb::user_id_t break_id,
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.h56 lldb::user_id_t break_id,
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.h58 lldb::user_id_t break_id,
/freebsd/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h63 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.h55 lldb::user_id_t break_id,
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h81 lldb::user_id_t break_id,

12