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

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Breakpoint/
H A DBreakpointLocationCollection.h47 /// @param[in] break_id
51 /// The breakpoint location index in break_id to remove.
57 Remove (lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
63 /// @param[in] break_id
67 /// The breakpoint location ID in \a break_id to seek for.
74 FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
84 /// The breakpoint location ID in \a break_id to seek for.
91 FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const;
199 GetIDPairIterator(lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
202 GetIDPairConstIterator(lldb::break_id_t break_id, lld
[all...]
H A DBreakpointID.h84 /// @param[out] break_id
92 ParseCanonicalReference (const char *input, lldb::break_id_t *break_id, lldb::break_id_t *break_loc_id);
115 /// @param[out] break_id
123 GetCanonicalReference (Stream *s, lldb::break_id_t break_id, lldb::break_id_t break_loc_id);
H A DBreakpointOptions.h136 /// @param[in] break_id
145 bool InvokeCallback (StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
300 lldb::user_id_t break_id,
H A DBreakpointSite.h289 RemoveOwner (lldb::break_id_t break_id,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Breakpoint/
H A DBreakpointLocationCollection.cpp64 BreakpointIDPairMatches (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) : argument
65 m_break_id(break_id),
82 BreakpointLocationCollection::GetIDPairIterator (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) argument
85 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
89 BreakpointLocationCollection::GetIDPairConstIterator (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const argument
92 BreakpointIDPairMatches(break_id, break_loc_id)); // Predicate
96 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) argument
99 collection::iterator pos = GetIDPairIterator(break_id, break_loc_id);
107 BreakpointLocationCollection::FindByIDPair (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) const argument
110 collection::const_iterator pos = GetIDPairConstIterator(break_id, break_loc_i
[all...]
H A DBreakpointList.cpp52 BreakpointList::Remove (break_id_t break_id, bool notify) argument
55 bp_collection::iterator pos = GetBreakpointIDIterator(break_id); // Predicate
114 BreakpointIDMatches (break_id_t break_id) : argument
115 m_break_id(break_id)
129 BreakpointList::GetBreakpointIDIterator (break_id_t break_id) argument
132 BreakpointIDMatches(break_id)); // Predicate
136 BreakpointList::GetBreakpointIDConstIterator (break_id_t break_id) const
139 BreakpointIDMatches(break_id)); // Predicate
143 BreakpointList::FindBreakpointByID (break_id_t break_id) argument
147 bp_collection::iterator pos = GetBreakpointIDIterator(break_id);
[all...]
H A DBreakpointSiteList.cpp82 BreakpointSiteList::Remove (lldb::break_id_t break_id) argument
85 collection::iterator pos = GetIDIterator(break_id); // Predicate
110 BreakpointSiteIDMatches (lldb::break_id_t break_id) : argument
111 m_break_id(break_id)
125 BreakpointSiteList::GetIDIterator (lldb::break_id_t break_id) argument
129 BreakpointSiteIDMatches(break_id)); // Predicate
133 BreakpointSiteList::GetIDConstIterator (lldb::break_id_t break_id) const
137 BreakpointSiteIDMatches(break_id)); // Predicate
141 BreakpointSiteList::FindByID (lldb::break_id_t break_id) argument
145 collection::iterator pos = GetIDIterator(break_id);
[all...]
H A DBreakpointLocationList.cpp52 BreakpointLocationList::ShouldStop (StoppointCallbackContext *context, lldb::break_id_t break_id) argument
54 BreakpointLocationSP bp = FindByID (break_id);
85 BreakpointLocationList::FindByID (lldb::break_id_t break_id) const
89 collection::const_iterator pos = std::lower_bound(m_locations.begin(), end, break_id, Compare);
90 if (pos != end && (*pos)->GetID() == break_id)
H A DBreakpointOptions.cpp28 BreakpointOptions::NullCallback (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
139 lldb::user_id_t break_id,
146 break_id,
138 InvokeCallback(StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
H A DBreakpointSite.cpp174 BreakpointSite::RemoveOwner (lldb::break_id_t break_id, lldb::break_id_t break_loc_id) argument
177 m_owners.Remove(break_id, break_loc_id);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.h99 lldb::user_id_t break_id,
142 lldb::user_id_t break_id,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.h108 lldb::user_id_t break_id,
148 lldb::user_id_t break_id,
H A DDynamicLoaderPOSIXDYLD.cpp295 user_id_t break_id,
313 BreakpointSP breakpoint_sp = dyld_instance->m_process->GetTarget().GetBreakpointByID (break_id);
317 log->Printf ("DynamicLoaderPOSIXDYLD::%s pid %" PRIu64 " disabling breakpoint id %" PRIu64, __FUNCTION__, dyld_instance->m_process->GetID (), break_id);
323 log->Printf ("DynamicLoaderPOSIXDYLD::%s pid %" PRIu64 " failed to find breakpoint for breakpoint id %" PRIu64, __FUNCTION__, dyld_instance->m_process->GetID (), break_id);
329 log->Printf ("DynamicLoaderPOSIXDYLD::%s breakpoint id %" PRIu64 " no Process instance! Cannot disable breakpoint", __FUNCTION__, break_id);
367 user_id_t break_id,
293 EntryBreakpointHit(void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
365 RendezvousBreakpointHit(void *baton, StoppointCallbackContext *context, user_id_t break_id, user_id_t break_loc_id) argument
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DStopInfo.h157 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id);
161 CreateStopReasonWithBreakpointSiteID (Thread &thread, lldb::break_id_t break_id, bool should_stop);
H A DTarget.h753 GetBreakpointByID (lldb::break_id_t break_id);
891 DisableBreakpointByID (lldb::break_id_t break_id);
894 EnableBreakpointByID (lldb::break_id_t break_id);
897 RemoveBreakpointByID (lldb::break_id_t break_id);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/InstrumentationRuntime/AddressSanitizer/
H A DAddressSanitizerRuntime.h82 NotifyBreakpointHit(void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/JITLoader/GDB/
H A DJITLoaderGDB.h93 lldb::user_id_t break_id,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBBreakpoint.cpp119 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
121 break_id = m_opaque_sp->GetID();
125 if (break_id == LLDB_INVALID_BREAK_ID)
130 static_cast<void*>(m_opaque_sp.get()), break_id);
133 return break_id;
182 break_id_t break_id = LLDB_INVALID_BREAK_ID; local
193 break_id = m_opaque_sp->FindLocationIDByAddress (address);
196 return break_id;
553 lldb::user_id_t break_id,
557 BreakpointSP bp_sp(exe_ctx.GetTargetRef().GetBreakpointList().FindBreakpointByID(break_id));
551 PrivateBreakpointHitCallback(void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id, lldb::user_id_t break_loc_id) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/API/
H A DSBBreakpoint.h185 lldb::user_id_t break_id,
H A DSBTarget.h702 BreakpointDelete (break_id_t break_id);
705 FindBreakpointByID (break_id_t break_id);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DStopInfo.cpp111 StopInfoBreakpoint (Thread &thread, break_id_t break_id) : argument
112 StopInfo (thread, break_id),
123 StopInfoBreakpoint (Thread &thread, break_id_t break_id, bool should_stop) : argument
124 StopInfo (thread, break_id),
1147 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id) argument
1149 return StopInfoSP (new StopInfoBreakpoint (thread, break_id));
1153 StopInfo::CreateStopReasonWithBreakpointSiteID (Thread &thread, break_id_t break_id, bool should_stop) argument
1155 return StopInfoSP (new StopInfoBreakpoint (thread, break_id, should_stop));
H A DTarget.cpp313 Target::GetBreakpointByID (break_id_t break_id) argument
317 if (LLDB_BREAK_ID_IS_INTERNAL (break_id))
318 bp_sp = m_internal_breakpoint_list.FindBreakpointByID (break_id);
320 bp_sp = m_breakpoint_list.FindBreakpointByID (break_id);
659 log->Printf ("Target::%s (internal = %s) => break_id = %s\n", __FUNCTION__, bp_sp->IsInternal() ? "yes" : "no", s.GetData());
821 Target::RemoveBreakpointByID (break_id_t break_id) argument
825 log->Printf ("Target::%s (break_id = %i, internal = %s)\n", __FUNCTION__, break_id, LLDB_BREAK_ID_IS_INTERNAL (break_id) ? "yes" : "no");
827 if (DisableBreakpointByID (break_id))
846 DisableBreakpointByID(break_id_t break_id) argument
867 EnableBreakpointByID(break_id_t break_id) argument
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-private-interfaces.h42 typedef bool (*BreakpointHitCallback) (void *baton, StoppointCallbackContext *context, lldb::user_id_t break_id, lldb::user_id_t break_loc_id);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.h166 lldb::user_id_t break_id,
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptRuntime.h313 static bool HookCallback(void *baton, StoppointCallbackContext *ctx, lldb::user_id_t break_id,
317 lldb::user_id_t break_id, lldb::user_id_t break_loc_id);

Completed in 130 milliseconds

12