Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/API/
H A DSBThreadPlan.cpp134 if (thread_plan_sp) { in GetThread()
144 if (thread_plan_sp) { in GetDescription()
160 if (thread_plan_sp) in SetPlanComplete()
168 if (thread_plan_sp) in IsPlanComplete()
177 if (thread_plan_sp) in IsPlanStale()
186 if (thread_plan_sp) in IsValid()
195 if (thread_plan_sp) in GetStopOthers()
204 if (thread_plan_sp) in SetStopOthers()
228 if (thread_plan_sp) { in QueueThreadPlanForStepOverRange()
268 if (thread_plan_sp) { in QueueThreadPlanForStepInRange()
[all …]
/llvm-project-15.0.7/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.cpp4531 RestorePlanState(lldb::ThreadPlanSP thread_plan_sp) in RestorePlanState() argument
4532 : m_thread_plan_sp(thread_plan_sp) { in RestorePlanState()
4605 ThreadSP thread_sp = thread_plan_sp->GetTarget() in HandleStoppedEvent()
4638 thread_plan_sp->SetPrivate(false); in HandleStoppedEvent()
4663 if (!thread_plan_sp) { in RunThreadPlan()
4670 if (!thread_plan_sp->ValidatePlan(nullptr)) { in RunThreadPlan()
4704 thread_plan_sp->SetPrivate(false); in RunThreadPlan()
4710 thread_plan_sp->SetIsControllingPlan(true); in RunThreadPlan()
4711 thread_plan_sp->SetOkayToDiscard(false); in RunThreadPlan()
5197 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()
/llvm-project-15.0.7/lldb/include/lldb/Target/
H A DThreadPlan.h500 void PushPlan(lldb::ThreadPlanSP &thread_plan_sp) { in PushPlan() argument
501 GetThread().PushPlan(thread_plan_sp); in PushPlan()
502 thread_plan_sp->SetPrivate(true); in PushPlan()
503 thread_plan_sp->SetIsControllingPlan(false); in PushPlan()
H A DProcess.h1234 RunThreadPlan(ExecutionContext &exe_ctx, lldb::ThreadPlanSP &thread_plan_sp,
/llvm-project-15.0.7/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()
425 return thread_plan_sp; in GetStepThroughTrampolinePlan()
446 thread_plan_sp = in GetStepThroughTrampolinePlan()
450 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDynamicLoaderPOSIXDYLD.cpp486 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
493 return thread_plan_sp; in GetStepThroughTrampolinePlan()
497 return thread_plan_sp; in GetStepThroughTrampolinePlan()
506 return thread_plan_sp; in GetStepThroughTrampolinePlan()
527 thread_plan_sp = in GetStepThroughTrampolinePlan()
531 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/llvm-project-15.0.7/lldb/bindings/python/
H A Dpython-swigsafecast.swig48 PythonObject ToSWIGWrapper(lldb::ThreadPlanSP thread_plan_sp) {
49 return ToSWIGHelper(new lldb::SBThreadPlan(std::move(thread_plan_sp)),
H A Dpython-wrapper.swig294 std::string &error_string, const lldb::ThreadPlanSP &thread_plan_sp) {
312 PythonObject tp_arg = ToSWIGWrapper(thread_plan_sp);
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/MacOSX-DYLD/
H A DDynamicLoaderDarwin.cpp851 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
992 thread_plan_sp = std::make_shared<ThreadPlanRunToAddress>( in GetStepThroughTrampolinePlan()
999 return thread_plan_sp; in GetStepThroughTrampolinePlan()
1109 lldb::ThreadPlanSP thread_plan_sp(new ThreadPlanCallFunction( in GetThreadLocalData() local
1116 exe_ctx, thread_plan_sp, options, execution_errors); in GetThreadLocalData()
1120 thread_plan_sp->GetReturnValueObject(); in GetThreadLocalData()
/llvm-project-15.0.7/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp363 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
365 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan( in GetStepThroughTrampolinePlan()
367 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/llvm-project-15.0.7/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h98 const lldb::ThreadPlanSP &thread_plan_sp);
H A DScriptInterpreterPython.cpp1731 std::string &error_str, lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
1735 if (!thread_plan_sp.get()) in CreateScriptedThreadPlan()
1738 Debugger &debugger = thread_plan_sp->GetTarget().GetDebugger(); in CreateScriptedThreadPlan()
1749 error_str, thread_plan_sp); in CreateScriptedThreadPlan()
/llvm-project-15.0.7/lldb/unittests/ScriptInterpreter/Python/
H A DPythonTestSuite.cpp92 const lldb::ThreadPlanSP &thread_plan_sp) { in LLDBSwigPythonCreateScriptedThreadPlan() argument
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DScriptInterpreter.h279 lldb::ThreadPlanSP thread_plan_sp) { in CreateScriptedThreadPlan() argument
/llvm-project-15.0.7/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp1519 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
1522 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/llvm-project-15.0.7/lldb/source/Plugins/StructuredData/DarwinLog/
H A DStructuredDataDarwinLog.cpp1560 auto thread_plan_sp = in InitCompletionHookCallback() local
1563 thread_sp->QueueThreadPlan(thread_plan_sp, abort_other_plans); in InitCompletionHookCallback()