Home
last modified time | relevance | path

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

/openbsd/src/gnu/llvm/lldb/source/Breakpoint/
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()
DBreakpointIDList.cpp164 BreakpointSP breakpoint_sp; in FindAndReplaceIDRanges() local
167 breakpoint_sp = target->GetBreakpointByID(bp_id->GetBreakpointID()); in FindAndReplaceIDRanges()
168 if (!breakpoint_sp) { in FindAndReplaceIDRanges()
174 const size_t num_locations = breakpoint_sp->GetNumLocations(); in FindAndReplaceIDRanges()
177 breakpoint_sp->GetLocationAtIndex(j).get(); in FindAndReplaceIDRanges()
DBreakpointResolverAddress.cpp119 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
120 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
DBreakpointResolverName.cpp329 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
330 Breakpoint &breakpoint = *breakpoint_sp; in SearchCallback()
/openbsd/src/gnu/llvm/lldb/include/lldb/Breakpoint/
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()
/openbsd/src/gnu/llvm/lldb/source/Target/
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()
DTarget.cpp136 for (const auto &breakpoint_sp : target.m_breakpoint_list.Breakpoints()) { in PrimeFromDummyTarget() local
137 if (breakpoint_sp->IsInternal()) in PrimeFromDummyTarget()
141 Breakpoint::CopyFromBreakpoint(shared_from_this(), *breakpoint_sp)); in PrimeFromDummyTarget()
/openbsd/src/gnu/llvm/lldb/bindings/python/
Dpython-swigsafecast.swig31 PythonObject ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp) {
32 return ToSWIGHelper(new lldb::SBBreakpoint(std::move(breakpoint_sp)),
Dpython-wrapper.swig373 const lldb::BreakpointSP &breakpoint_sp) {
390 pfunc(ToSWIGWrapper(breakpoint_sp), ToSWIGWrapper(args_impl), dict);
/openbsd/src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Lua/
DScriptInterpreterLua.cpp278 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction() local
279 BreakpointLocationSP bp_loc_sp(breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/openbsd/src/gnu/llvm/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
DDynamicLoaderPOSIXDYLD.cpp278 BreakpointSP breakpoint_sp = in EntryBreakpointHit() local
280 if (breakpoint_sp) { in EntryBreakpointHit()
285 breakpoint_sp->SetEnabled(false); in EntryBreakpointHit()
/openbsd/src/gnu/llvm/lldb/source/Plugins/StructuredData/DarwinLog/
DStructuredDataDarwinLog.cpp1613 auto breakpoint_sp = target.CreateBreakpoint( in AddInitCompletionHook() local
1616 if (!breakpoint_sp) { in AddInitCompletionHook()
1627 breakpoint_sp->SetCallback(InitCompletionHookCallback, nullptr); in AddInitCompletionHook()
1628 m_breakpoint_id = breakpoint_sp->GetID(); in AddInitCompletionHook()
/openbsd/src/gnu/llvm/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
DRenderScriptRuntime.cpp796 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
797 assert(breakpoint_sp); in SearchCallback()
819 breakpoint_sp->AddLocation(bp_addr); in SearchCallback()
829 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
830 assert(breakpoint_sp); in SearchCallback()
878 breakpoint_sp->AddLocation(address, &new_bp); in SearchCallback()
893 BreakpointSP breakpoint_sp = GetBreakpoint(); in SearchCallback() local
894 if (!breakpoint_sp) in SearchCallback()
904 Breakpoint& breakpoint = *breakpoint_sp; in SearchCallback()
3682 BreakpointSP breakpoint_sp = in KernelBreakpointHit() local
[all …]
/openbsd/src/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
DSWIGPythonBridge.h68 PythonObject ToSWIGWrapper(lldb::BreakpointSP breakpoint_sp);
DScriptInterpreterPython.cpp2102 BreakpointSP breakpoint_sp = target->GetBreakpointByID(break_id); in BreakpointCallbackFunction() local
2103 if (breakpoint_sp) { in BreakpointCallbackFunction()
2105 breakpoint_sp->FindLocationByID(break_loc_id)); in BreakpointCallbackFunction()
/openbsd/src/gnu/llvm/lldb/source/Commands/
DCommandObjectBreakpoint.cpp1501 for (auto breakpoint_sp : breakpoints.Breakpoints()) { in DoExecute() local
1502 if (!breakpoint_sp->IsEnabled() && breakpoint_sp->AllowDelete()) { in DoExecute()
1503 BreakpointID bp_id(breakpoint_sp->GetID()); in DoExecute()
1506 valid_bp_ids.AddBreakpointID(breakpoint_sp->GetID()); in DoExecute()
/openbsd/src/gnu/llvm/lldb/include/lldb/Target/
DTarget.h1592 void AddBreakpoint(lldb::BreakpointSP breakpoint_sp, bool internal);