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

123

/freebsd-current/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h38 /// \param[in] break_id
42 /// The breakpoint location index in break_id to remove.
46 bool Remove(lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
51 /// \param[in] break_id
55 /// The breakpoint location ID in \a break_id to seek for.
60 lldb::BreakpointLocationSP FindByIDPair(lldb::break_id_t break_id,
66 /// \param[in] break_id
70 /// The breakpoint location ID in \a break_id to seek for.
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,
[all...]
H A DBreakpointID.h81 /// \param[out] break_id
87 static void GetCanonicalReference(Stream *s, lldb::break_id_t break_id,
H A DBreakpointSite.h213 size_t RemoveConstituent(lldb::break_id_t break_id,
H A DBreakpointOptions.h217 /// \param[in] break_id
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,
/freebsd-current/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointOptionCommon.h31 lldb::user_id_t break_id,
H A DSBBreakpointOptionCommon.cpp50 void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id,
52 LLDB_INSTRUMENT_VA(baton, ctx, break_id, break_loc_id);
55 exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id));
49 PrivateBreakpointHitCallback( void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
H A DSBBreakpoint.cpp93 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
96 break_id = bkpt_sp->GetID();
98 return break_id;
152 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
163 break_id = bkpt_sp->FindLocationIDByAddress(address);
166 return break_id;
812 for (lldb::break_id_t &break_id : m_break_ids) {
813 if (break_id == desired_id)
814 return target_sp->GetBreakpointList().FindBreakpointByID(break_id);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/Utility/
H A DReportRetriever.h26 lldb::user_id_t break_id,
/freebsd-current/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp46 BreakpointIDPairMatches(lldb::break_id_t break_id, argument
48 : m_break_id(break_id), m_break_loc_id(break_loc_id) {}
61 BreakpointLocationCollection::GetIDPairIterator(lldb::break_id_t break_id, argument
66 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
71 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const {
75 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
79 BreakpointLocationCollection::FindByIDPair(lldb::break_id_t break_id, argument
82 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
90 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const {
93 GetIDPairConstIterator(break_id, break_loc_i
70 GetIDPairConstIterator( lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const argument
89 FindByIDPair( lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const argument
[all...]
H A DBreakpointList.cpp47 bool BreakpointList::Remove(break_id_t break_id, bool notify) { argument
52 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; });
111 BreakpointList::GetBreakpointIDIterator(break_id_t break_id) { argument
114 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; });
118 BreakpointList::GetBreakpointIDConstIterator(break_id_t break_id) const {
121 [&](const BreakpointSP &bp) { return bp->GetID() == break_id; });
124 BreakpointSP BreakpointList::FindBreakpointByID(break_id_t break_id) const {
127 auto it = GetBreakpointIDConstIterator(break_id);
H A DBreakpointLocationList.cpp42 lldb::break_id_t break_id) {
43 BreakpointLocationSP bp = FindByID(break_id);
68 BreakpointLocationList::FindByID(lldb::break_id_t break_id) const {
72 llvm::lower_bound(m_locations, break_id, Compare);
73 if (pos != end && (*pos)->GetID() == break_id)
41 ShouldStop(StoppointCallbackContext *context, lldb::break_id_t break_id) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASanLibsanitizers/
H A DInstrumentationRuntimeASanLibsanitizers.cpp70 void *baton, StoppointCallbackContext *context, user_id_t break_id,
81 return ReportRetriever::NotifyBreakpointHit(process_sp, context, break_id,
69 NotifyBreakpointHit( void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
H A DInstrumentationRuntimeASanLibsanitizers.h49 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DInstrumentationRuntimeASan.cpp64 void *baton, StoppointCallbackContext *context, user_id_t break_id,
75 return ReportRetriever::NotifyBreakpointHit(process_sp, context, break_id,
63 NotifyBreakpointHit( void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
H A DInstrumentationRuntimeASan.h49 lldb::user_id_t break_id,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DInstrumentationRuntimeMainThreadChecker.h56 lldb::user_id_t break_id,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DInstrumentationRuntimeUBSan.h58 lldb::user_id_t break_id,
/freebsd-current/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-current/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);
/freebsd-current/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-current/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DInstrumentationRuntimeTSan.h55 lldb::user_id_t break_id,
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DStopInfo.h105 lldb::break_id_t break_id);
110 Thread &thread, lldb::break_id_t break_id, bool should_stop);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h81 lldb::user_id_t break_id,
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Process/scripted/
H A DScriptedThread.cpp252 lldb::break_id_t break_id; local
253 data_dict->GetValueForKeyAsInteger("break_id", break_id,
256 StopInfo::CreateStopReasonWithBreakpointSiteID(*this, break_id);
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.h67 lldb::user_id_t break_id,

Completed in 335 milliseconds

123