| /freebsd-13.1/contrib/llvm-project/lldb/source/API/ |
| H A D | SBThreadPlan.cpp | 140 if (thread_plan_sp) { in GetThread() 152 if (thread_plan_sp) { in GetDescription() 168 if (thread_plan_sp) in SetPlanComplete() 176 if (thread_plan_sp) in IsPlanComplete() 185 if (thread_plan_sp) in IsPlanStale() 194 if (thread_plan_sp) in IsValid() 203 if (thread_plan_sp) in GetStopOthers() 212 if (thread_plan_sp) in SetStopOthers() 242 if (thread_plan_sp) { in QueueThreadPlanForStepOverRange() 288 if (thread_plan_sp) { in QueueThreadPlanForStepInRange() [all …]
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Target/ |
| H A D | Thread.cpp | 1235 return thread_plan_sp; in QueueBasePlan() 1244 return thread_plan_sp; in QueueThreadPlanForStepSingleInstruction() 1257 return thread_plan_sp; in QueueThreadPlanForStepOverRange() 1285 return thread_plan_sp; in QueueThreadPlanForStepInRange() 1314 return thread_plan_sp; in QueueThreadPlanForStepOut() 1333 return thread_plan_sp; in QueueThreadPlanForStepOutNoShouldStop() 1342 if (!thread_plan_sp || !thread_plan_sp->ValidatePlan(nullptr)) in QueueThreadPlanForStepThrough() 1346 return thread_plan_sp; in QueueThreadPlanForStepThrough() 1357 return thread_plan_sp; in QueueThreadPlanForRunToAddress() 1367 return thread_plan_sp; in QueueThreadPlanForStepUntil() [all …]
|
| H A D | Process.cpp | 4504 RestorePlanState(lldb::ThreadPlanSP thread_plan_sp) in RestorePlanState() argument 4578 ThreadSP thread_sp = thread_plan_sp->GetTarget() in HandleStoppedEvent() 4592 if (plan == thread_plan_sp && plan->PlanSucceeded()) { in HandleStoppedEvent() 4611 thread_plan_sp->SetPrivate(false); in HandleStoppedEvent() 4636 if (!thread_plan_sp) { in RunThreadPlan() 4643 if (!thread_plan_sp->ValidatePlan(nullptr)) { in RunThreadPlan() 4677 thread_plan_sp->SetPrivate(false); in RunThreadPlan() 4683 thread_plan_sp->SetIsMasterPlan(true); in RunThreadPlan() 4684 thread_plan_sp->SetOkayToDiscard(false); in RunThreadPlan() 5171 thread_plan_sp->SetStopOthers(false); in RunThreadPlan() [all …]
|
| H A D | ThreadPlanStack.cpp | 384 for (lldb::ThreadPlanSP thread_plan_sp : m_plans) in ClearThreadCache() local 385 thread_plan_sp->ClearThreadCache(); in ClearThreadCache()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/ |
| H A D | ThreadPlan.h | 495 void PushPlan(lldb::ThreadPlanSP &thread_plan_sp) { in PushPlan() argument 496 GetThread().PushPlan(thread_plan_sp); in PushPlan() 497 thread_plan_sp->SetPrivate(true); in PushPlan() 498 thread_plan_sp->SetIsMasterPlan(false); in PushPlan()
|
| H A D | Process.h | 1222 RunThreadPlan(ExecutionContext &exe_ctx, lldb::ThreadPlanSP &thread_plan_sp,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Hexagon-DYLD/ |
| H A D | DynamicLoaderHexagonDYLD.cpp | 414 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 421 return thread_plan_sp; in GetStepThroughTrampolinePlan() 426 return thread_plan_sp; in GetStepThroughTrampolinePlan() 435 return thread_plan_sp; in GetStepThroughTrampolinePlan() 456 thread_plan_sp = in GetStepThroughTrampolinePlan() 460 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/ |
| H A D | DynamicLoaderPOSIXDYLD.cpp | 483 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 490 return thread_plan_sp; in GetStepThroughTrampolinePlan() 494 return thread_plan_sp; in GetStepThroughTrampolinePlan() 503 return thread_plan_sp; in GetStepThroughTrampolinePlan() 524 thread_plan_sp = in GetStepThroughTrampolinePlan() 528 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/ |
| H A D | AppleObjCRuntime.cpp | 362 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local 364 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan( in GetStepThroughTrampolinePlan() 366 return thread_plan_sp; in GetStepThroughTrampolinePlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | ScriptInterpreterPython.cpp | 122 const lldb::ThreadPlanSP &thread_plan_sp); 1851 std::string &error_str, lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument 1855 if (!thread_plan_sp.get()) in CreateScriptedThreadPlan() 1858 Debugger &debugger = thread_plan_sp->GetTarget().GetDebugger(); in CreateScriptedThreadPlan() 1872 args_data, error_str, thread_plan_sp); in CreateScriptedThreadPlan()
|
| /freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | ScriptInterpreter.h | 276 lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/StructuredData/DarwinLog/ |
| H A D | StructuredDataDarwinLog.cpp | 1580 auto thread_plan_sp = in InitCompletionHookCallback() local 1583 thread_sp->QueueThreadPlan(thread_plan_sp, abort_other_plans); in InitCompletionHookCallback()
|
| /freebsd-13.1/contrib/llvm-project/lldb/bindings/python/ |
| H A D | python-wrapper.swig | 351 const lldb::ThreadPlanSP& thread_plan_sp 372 …PythonObject tp_arg(PyRefType::Owned, SBTypeToSWIGWrapper(new lldb::SBThreadPlan(thread_plan_sp)));
|