Home
last modified time | relevance | path

Searched refs:breakpoint_sp (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Breakpoint/
H A DBreakpointResolverScripted.cpp37 BreakpointSP breakpoint_sp) { in CreateImplementationIfNeeded() argument
44 if (!breakpoint_sp) in CreateImplementationIfNeeded()
47 TargetSP target_sp = breakpoint_sp->GetTargetSP(); in CreateImplementationIfNeeded()
54 m_class_name.c_str(), m_args, breakpoint_sp); in CreateImplementationIfNeeded()
H A DBreakpointIDList.cpp118 BreakpointSP breakpoint_sp; in FindAndReplaceIDRanges() local
121 breakpoint_sp = target->GetBreakpointByID(bp_id->GetBreakpointID()); in FindAndReplaceIDRanges()
122 if (!breakpoint_sp) { in FindAndReplaceIDRanges()
128 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges()
131 breakpoint_sp->GetLocationAtIndex(j).get(); in FindAndReplaceIDRanges()
H A DBreakpointResolverAddress.cpp117 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback()
118 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
119 BreakpointSP breakpoint_sp = GetBreakpoint(); SearchCallback() local
H A DBreakpointResolverName.cpp327 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback()
328 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
329 BreakpointSP breakpoint_sp = GetBreakpoint(); SearchCallback() local
/freebsd/contrib/llvm-project/lldb/include/lldb/Breakpoint/
H A DBreakpointResolver.h64 auto breakpoint_sp = m_breakpoint.expired() ? lldb::BreakpointSP() : in GetBreakpoint() local
66 assert(breakpoint_sp); in GetBreakpoint()
67 return breakpoint_sp; in GetBreakpoint()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DLanguageRuntime.cpp163 BreakpointSP breakpoint_sp = GetBreakpoint(); in SetActualResolver() local
164 if (breakpoint_sp) { in SetActualResolver()
165 ProcessSP process_sp = breakpoint_sp->GetTarget().GetProcessSP(); in SetActualResolver()
182 breakpoint_sp, m_catch_bp, m_throw_bp); in SetActualResolver()
H A DTarget.cpp139 for (const auto &breakpoint_sp : target.m_breakpoint_list.Breakpoints()) { in PrimeFromDummyTarget() local
140 if (breakpoint_sp->IsInternal()) in PrimeFromDummyTarget()
144 Breakpoint::CopyFromBreakpoint(shared_from_this(), *breakpoint_sp)); in PrimeFromDummyTarget()
/freebsd/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig31 PythonObject SWIGBridge::ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp) {
32 return ToSWIGHelper(new lldb::SBBreakpoint(std::move(breakpoint_sp)),
H A Dpython-wrapper.swig235 const lldb::BreakpointSP &breakpoint_sp) {
252 pfunc(SWIGBridge::ToSWIGWrapper(breakpoint_sp), SWIGBridge::ToSWIGWrapper(args_impl), dict);
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/
H A DScriptInterpreterLua.cpp279 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction() local
280 BreakpointLocationSP bp_loc_sp(breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp278 BreakpointSP breakpoint_sp = in EntryBreakpointHit() local
280 if (breakpoint_sp) { in EntryBreakpointHit()
285 breakpoint_sp->SetEnabled(false); in EntryBreakpointHit()
/freebsd/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1603 auto breakpoint_sp = target.CreateBreakpoint( in AddInitCompletionHook()
1606 if (!breakpoint_sp) { in AddInitCompletionHook()
1617 breakpoint_sp->SetCallback(InitCompletionHookCallback, nullptr); in AddInitCompletionHook()
1618 m_breakpoint_id = breakpoint_sp->GetID(); in AddInitCompletionHook()
1607 auto breakpoint_sp = target.CreateBreakpoint( AddInitCompletionHook() local
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h88 static PythonObject ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp);
H A DScriptInterpreterPython.cpp1930 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction() local
1931 if (breakpoint_sp) { in BreakpointCallbackFunction()
1933 breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectBreakpoint.cpp1467 for (auto breakpoint_sp : breakpoints.Breakpoints()) { in DoExecute() local
1468 if (!breakpoint_sp->IsEnabled() && breakpoint_sp->AllowDelete()) { in DoExecute()
1469 BreakpointID bp_id(breakpoint_sp->GetID()); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DTarget.h1637 void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal);