Home
last modified time | relevance | path

Searched refs:thread_plan_sp (Results 1 – 15 of 15) sorted by relevance

/freebsd-14.2/contrib/llvm-project/lldb/source/API/
H A DSBThreadPlan.cpp133 if (thread_plan_sp) { in GetThread()
143 if (thread_plan_sp) { in GetDescription()
159 if (thread_plan_sp) in SetPlanComplete()
167 if (thread_plan_sp) in IsPlanComplete()
176 if (thread_plan_sp) in IsPlanStale()
185 if (thread_plan_sp) in IsValid()
194 if (thread_plan_sp) in GetStopOthers()
203 if (thread_plan_sp) in SetStopOthers()
227 if (thread_plan_sp) { in QueueThreadPlanForStepOverRange()
267 if (thread_plan_sp) { in QueueThreadPlanForStepInRange()
[all …]
/freebsd-14.2/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp1234 return thread_plan_sp; in QueueBasePlan()
1243 return thread_plan_sp; in QueueThreadPlanForStepSingleInstruction()
1256 return thread_plan_sp; in QueueThreadPlanForStepOverRange()
1284 return thread_plan_sp; in QueueThreadPlanForStepInRange()
1313 return thread_plan_sp; in QueueThreadPlanForStepOut()
1332 return thread_plan_sp; in QueueThreadPlanForStepOutNoShouldStop()
1341 if (!thread_plan_sp || !thread_plan_sp->ValidatePlan(nullptr)) in QueueThreadPlanForStepThrough()
1345 return thread_plan_sp; in QueueThreadPlanForStepThrough()
1356 return thread_plan_sp; in QueueThreadPlanForRunToAddress()
1366 return thread_plan_sp; in QueueThreadPlanForStepUntil()
[all …]
H A DProcess.cpp4603 RestorePlanState(lldb::ThreadPlanSP thread_plan_sp) in RestorePlanState() argument
4604 : m_thread_plan_sp(thread_plan_sp) { in RestorePlanState()
4677 ThreadSP thread_sp = thread_plan_sp->GetTarget() in HandleStoppedEvent()
4710 thread_plan_sp->SetPrivate(false); in HandleStoppedEvent()
4735 if (!thread_plan_sp) { in RunThreadPlan()
4742 if (!thread_plan_sp->ValidatePlan(nullptr)) { in RunThreadPlan()
4776 thread_plan_sp->SetPrivate(false); in RunThreadPlan()
4782 thread_plan_sp->SetIsControllingPlan(true); in RunThreadPlan()
4783 thread_plan_sp->SetOkayToDiscard(false); in RunThreadPlan()
5272 thread_plan_sp->SetStopOthers(false); in RunThreadPlan()
[all …]
H A DThreadPlanStack.cpp389 for (lldb::ThreadPlanSP thread_plan_sp : m_plans) in ClearThreadCache() local
390 thread_plan_sp->ClearThreadCache(); in ClearThreadCache()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlan.h502 void PushPlan(lldb::ThreadPlanSP &thread_plan_sp) { in PushPlan() argument
503 GetThread().PushPlan(thread_plan_sp); in PushPlan()
504 thread_plan_sp->SetPrivate(true); in PushPlan()
505 thread_plan_sp->SetIsControllingPlan(false); in PushPlan()
H A DProcess.h1303 RunThreadPlan(ExecutionContext &exe_ctx, lldb::ThreadPlanSP &thread_plan_sp,
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/
H A DDynamicLoaderHexagonDYLD.cpp404 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
411 return thread_plan_sp; in GetStepThroughTrampolinePlan()
416 return thread_plan_sp; in GetStepThroughTrampolinePlan()
424 return thread_plan_sp; in GetStepThroughTrampolinePlan()
442 thread_plan_sp = in GetStepThroughTrampolinePlan()
446 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp492 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
499 return thread_plan_sp; in GetStepThroughTrampolinePlan()
503 return thread_plan_sp; in GetStepThroughTrampolinePlan()
511 return thread_plan_sp; in GetStepThroughTrampolinePlan()
529 thread_plan_sp = in GetStepThroughTrampolinePlan()
533 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/freebsd-14.2/contrib/llvm-project/lldb/bindings/python/
H A Dpython-swigsafecast.swig26 PythonObject SWIGBridge::ToSWIGWrapper(lldb::ThreadPlanSP thread_plan_sp) {
27 return ToSWIGHelper(new lldb::SBThreadPlan(std::move(thread_plan_sp)),
H A Dpython-wrapper.swig235 std::string &error_string, const lldb::ThreadPlanSP &thread_plan_sp) {
253 PythonObject tp_arg = SWIGBridge::ToSWIGWrapper(thread_plan_sp);
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h86 static PythonObject ToSWIGWrapper(lldb::ThreadPlanSP thread_plan_sp);
152 const lldb::ThreadPlanSP &thread_plan_sp);
H A DScriptInterpreterPython.cpp1554 std::string &error_str, lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
1558 if (!thread_plan_sp.get()) in CreateScriptedThreadPlan()
1561 Debugger &debugger = thread_plan_sp->GetTarget().GetDebugger(); in CreateScriptedThreadPlan()
1572 error_str, thread_plan_sp); in CreateScriptedThreadPlan()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp364 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
366 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan( in GetStepThroughTrampolinePlan()
368 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h257 lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1550 auto thread_plan_sp = in InitCompletionHookCallback() local
1553 thread_sp->QueueThreadPlan(thread_plan_sp, abort_other_plans); in InitCompletionHookCallback()