Home
last modified time | relevance | path

Searched refs:call_plan_sp (Results 1 – 3 of 3) sorted by relevance

/external/lldb/source/Plugins/Process/Utility/
DInferiorCallPOSIX.cpp93 lldb::ThreadPlanSP call_plan_sp (call_function_thread_plan); in InferiorCallMmap() local
94 if (call_plan_sp) in InferiorCallMmap()
98 call_plan_sp->SetIsMasterPlan (true); in InferiorCallMmap()
99 call_plan_sp->SetOkayToDiscard(true); in InferiorCallMmap()
107 call_plan_sp, in InferiorCallMmap()
117 … allocated_addr = call_plan_sp->GetReturnValueObject()->GetValueAsUnsigned(LLDB_INVALID_ADDRESS); in InferiorCallMmap()
172 lldb::ThreadPlanSP call_plan_sp (new ThreadPlanCallFunction (*thread, in InferiorCallMunmap() local
180 if (call_plan_sp) in InferiorCallMunmap()
184 call_plan_sp->SetIsMasterPlan (true); in InferiorCallMunmap()
185 call_plan_sp->SetOkayToDiscard(true); in InferiorCallMunmap()
[all …]
/external/lldb/source/Expression/
DClangUserExpression.cpp863 … lldb::ThreadPlanSP call_plan_sp(new ThreadPlanCallUserExpression (exe_ctx.GetThreadRef(), in Execute() local
873 if (!call_plan_sp || !call_plan_sp->ValidatePlan (&error_stream)) in Execute()
876 …addr_t function_stack_pointer = static_cast<ThreadPlanCallFunction *>(call_plan_sp.get())->GetFunc… in Execute()
888call_plan_sp, in Execute()
906 if (call_plan_sp) in Execute()
908 lldb::StopInfoSP real_stop_info_sp = call_plan_sp->GetRealStopInfo(); in Execute()
DClangFunction.cpp532 lldb::ThreadPlanSP call_plan_sp (ClangFunction::GetThreadPlanToCallFunction (exe_ctx, in ExecuteFunction() local
540 if (!call_plan_sp) in ExecuteFunction()
548 ExecutionResults results = exe_ctx.GetProcessRef().RunThreadPlan (exe_ctx, call_plan_sp, in ExecuteFunction()