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

12

/freebsd-11-stable/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.h82 /// \param[out] break_id
88 static void GetCanonicalReference(Stream *s, lldb::break_id_t break_id,
H A DBreakpointSite.h202 size_t RemoveOwner(lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
H A DBreakpointOptions.h219 /// \param[in] break_id
228 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
336 lldb::user_id_t break_id,
373 void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBBreakpointOptionCommon.h31 lldb::user_id_t break_id,
H A DSBBreakpointOptionCommon.cpp51 lldb::user_id_t break_id,
56 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.cpp87 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
90 break_id = bkpt_sp->GetID();
92 return break_id;
148 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
159 break_id = bkpt_sp->FindLocationIDByAddress(address);
162 return break_id;
814 for (lldb::break_id_t &break_id : m_break_ids) {
815 if (break_id == desired_id)
816 return target_sp->GetBreakpointList().FindBreakpointByID(break_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointSiteList.cpp63 bool BreakpointSiteList::Remove(lldb::break_id_t break_id) { argument
65 collection::iterator pos = GetIDIterator(break_id); // Predicate
85 BreakpointSiteIDMatches(lldb::break_id_t break_id) : m_break_id(break_id) {} argument
96 BreakpointSiteList::GetIDIterator(lldb::break_id_t break_id) { argument
100 BreakpointSiteIDMatches(break_id)); // Predicate
104 BreakpointSiteList::GetIDConstIterator(lldb::break_id_t break_id) const {
108 BreakpointSiteIDMatches(break_id)); // Predicate
111 BreakpointSiteSP BreakpointSiteList::FindByID(lldb::break_id_t break_id) { argument
114 collection::iterator pos = GetIDIterator(break_id);
[all...]
H A DBreakpointLocationCollection.cpp47 BreakpointIDPairMatches(lldb::break_id_t break_id, argument
49 : m_break_id(break_id), m_break_loc_id(break_loc_id) {}
62 BreakpointLocationCollection::GetIDPairIterator(lldb::break_id_t break_id, argument
67 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
72 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const {
76 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
80 BreakpointLocationCollection::FindByIDPair(lldb::break_id_t break_id, argument
83 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
91 lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const {
94 GetIDPairConstIterator(break_id, break_loc_i
71 GetIDPairConstIterator( lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const argument
90 FindByIDPair( lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const argument
[all...]
H A DBreakpointList.cpp45 bool BreakpointList::Remove(break_id_t break_id, bool notify) { argument
50 [&](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.cpp43 lldb::break_id_t break_id) {
44 BreakpointLocationSP bp = FindByID(break_id);
69 BreakpointLocationList::FindByID(lldb::break_id_t break_id) const {
73 std::lower_bound(m_locations.begin(), end, break_id, Compare);
74 if (pos != end && (*pos)->GetID() == break_id)
42 ShouldStop(StoppointCallbackContext *context, lldb::break_id_t break_id) argument
H A DBreakpointSite.cpp130 size_t BreakpointSite::RemoveOwner(lldb::break_id_t break_id, argument
133 m_owners.Remove(break_id, break_loc_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/ASan/
H A DASanRuntime.h56 lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/MainThreadChecker/
H A DMainThreadCheckerRuntime.h59 lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/UBSan/
H A DUBSanRuntime.h60 lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.h79 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
110 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h96 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
131 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
H A DDynamicLoaderPOSIXDYLD.cpp261 void *baton, StoppointCallbackContext *context, user_id_t break_id,
283 dyld_instance->m_process->GetTarget().GetBreakpointByID(break_id);
288 __FUNCTION__, dyld_instance->m_process->GetID(), break_id);
294 __FUNCTION__, dyld_instance->m_process->GetID(), break_id);
300 __FUNCTION__, break_id);
382 void *baton, StoppointCallbackContext *context, user_id_t break_id,
260 EntryBreakpointHit( void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
381 RendezvousBreakpointHit( void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
/freebsd-11-stable/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-11-stable/contrib/llvm-project/lldb/source/Plugins/InstrumentationRuntime/TSan/
H A DTSanRuntime.h59 lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h65 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.h83 lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/source/Target/
H A DStopInfo.cpp86 StopInfoBreakpoint(Thread &thread, break_id_t break_id) argument
87 : StopInfo(thread, break_id), m_should_stop(false),
94 StopInfoBreakpoint(Thread &thread, break_id_t break_id, bool should_stop) argument
95 : StopInfo(thread, break_id), m_should_stop(should_stop),
1099 break_id_t break_id) {
1100 return StopInfoSP(new StopInfoBreakpoint(thread, break_id));
1104 break_id_t break_id,
1106 return StopInfoSP(new StopInfoBreakpoint(thread, break_id, should_stop));
1098 CreateStopReasonWithBreakpointSiteID(Thread &thread, break_id_t break_id) argument
1103 CreateStopReasonWithBreakpointSiteID(Thread &thread, break_id_t break_id, bool should_stop) argument
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.h119 lldb::user_id_t break_id,
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-interfaces.h80 lldb::user_id_t break_id,

Completed in 155 milliseconds

12