Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/API/
H A DSBThreadPlan.cpp132 ThreadPlanSP thread_plan_sp(GetSP()); in GetThread() local
133 if (thread_plan_sp) { in GetThread()
134 return SBThread(thread_plan_sp->GetThread().shared_from_this()); in GetThread()
142 ThreadPlanSP thread_plan_sp(GetSP()); in GetDescription() local
143 if (thread_plan_sp) { in GetDescription()
144 thread_plan_sp->GetDescription(description.get(), eDescriptionLevelFull); in GetDescription()
158 ThreadPlanSP thread_plan_sp(GetSP()); in SetPlanComplete() local
159 if (thread_plan_sp) in SetPlanComplete()
160 thread_plan_sp->SetPlanComplete(success); in SetPlanComplete()
166 ThreadPlanSP thread_plan_sp(GetSP()); in IsPlanComplete() local
[all …]
/src/contrib/llvm-project/lldb/source/Target/
H A DThread.cpp1075 void Thread::PushPlan(ThreadPlanSP thread_plan_sp) { in PushPlan() argument
1076 assert(thread_plan_sp && "Don't push an empty thread plan."); in PushPlan()
1081 thread_plan_sp->GetDescription(&s, lldb::eDescriptionLevelFull); in PushPlan()
1084 thread_plan_sp->GetThread().GetID()); in PushPlan()
1087 GetPlans().PushPlan(std::move(thread_plan_sp)); in PushPlan()
1156 Status Thread::QueueThreadPlan(ThreadPlanSP &thread_plan_sp, in QueueThreadPlan() argument
1160 if (!thread_plan_sp->ValidatePlan(&s)) { in QueueThreadPlan()
1161 DiscardThreadPlansUpToPlan(thread_plan_sp); in QueueThreadPlan()
1162 thread_plan_sp.reset(); in QueueThreadPlan()
1170 PushPlan(thread_plan_sp); in QueueThreadPlan()
[all …]
H A DProcess.cpp4801 RestorePlanState(lldb::ThreadPlanSP thread_plan_sp) in RestorePlanState() argument
4802 : m_thread_plan_sp(thread_plan_sp) { in RestorePlanState()
4868 HandleStoppedEvent(lldb::tid_t thread_id, const ThreadPlanSP &thread_plan_sp, in HandleStoppedEvent() argument
4875 ThreadSP thread_sp = thread_plan_sp->GetTarget() in HandleStoppedEvent()
4889 if (plan == thread_plan_sp && plan->PlanSucceeded()) { in HandleStoppedEvent()
4908 thread_plan_sp->SetPrivate(false); in HandleStoppedEvent()
4926 lldb::ThreadPlanSP &thread_plan_sp, in RunThreadPlan() argument
4933 if (!thread_plan_sp) { in RunThreadPlan()
4939 if (!thread_plan_sp->ValidatePlan(nullptr)) { in RunThreadPlan()
4966 RestorePlanState thread_plan_restorer(thread_plan_sp); 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()
/src/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.h1307 RunThreadPlan(ExecutionContext &exe_ctx, lldb::ThreadPlanSP &thread_plan_sp,
/src/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()
/src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/Interfaces/
H A DScriptedThreadPlanPythonInterface.cpp32 const llvm::StringRef class_name, lldb::ThreadPlanSP thread_plan_sp, in CreatePluginObject() argument
35 thread_plan_sp, args_sp); in CreatePluginObject()
H A DScriptedThreadPlanPythonInterface.h28 lldb::ThreadPlanSP thread_plan_sp,
/src/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()
524 return thread_plan_sp; in GetStepThroughTrampolinePlan()
542 thread_plan_sp = in GetStepThroughTrampolinePlan()
546 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/src/contrib/llvm-project/lldb/include/lldb/Interpreter/Interfaces/
H A DScriptedThreadPlanInterface.h21 lldb::ThreadPlanSP thread_plan_sp,
/src/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)),
/src/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCRuntime.cpp370 ThreadPlanSP thread_plan_sp; in GetStepThroughTrampolinePlan() local
372 thread_plan_sp = m_objc_trampoline_handler_up->GetStepThroughDispatchPlan( in GetStepThroughTrampolinePlan()
374 return thread_plan_sp; in GetStepThroughTrampolinePlan()
/src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DSWIGPythonBridge.h87 static PythonObject ToSWIGWrapper(lldb::ThreadPlanSP thread_plan_sp);
/src/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()