Searched refs:new_plan_sp (Results 1 - 6 of 6) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepOverRange.cpp141 ThreadPlanSP new_plan_sp; local
154 new_plan_sp = m_thread.QueueThreadPlanForStepThrough(m_stack_id, false,
157 if (new_plan_sp && log)
174 new_plan_sp = m_thread.QueueThreadPlanForStepOutNoShouldStop(
179 new_plan_sp = m_thread.QueueThreadPlanForStepThrough(
182 if (new_plan_sp)
199 new_plan_sp = m_thread.QueueThreadPlanForStepThrough(
289 new_plan_sp = m_thread.QueueThreadPlanForStepOverRange(
311 if (!new_plan_sp) {
312 new_plan_sp
[all...]
H A DThread.cpp2112 ThreadPlanSP new_plan_sp; local
2118 new_plan_sp = QueueThreadPlanForStepInRange(
2123 new_plan_sp = QueueThreadPlanForStepSingleInstruction(
2127 new_plan_sp->SetIsMasterPlan(true);
2128 new_plan_sp->SetOkayToDiscard(false);
2145 ThreadPlanSP new_plan_sp; local
2152 new_plan_sp = QueueThreadPlanForStepOverRange(
2156 new_plan_sp = QueueThreadPlanForStepSingleInstruction(
2160 new_plan_sp->SetIsMasterPlan(true);
2161 new_plan_sp
[all...]
H A DStopInfo.cpp723 ThreadPlanSP new_plan_sp(
729 if (new_plan_sp && new_plan_status.Success()) {
730 new_plan_sp->SetIsMasterPlan(true);
731 new_plan_sp->SetOkayToDiscard(false);
732 new_plan_sp->SetPrivate(true);
/freebsd-12-stable/contrib/llvm-project/lldb/source/Expression/
H A DFunctionCaller.cpp255 lldb::ThreadPlanSP new_plan_sp(new ThreadPlanCallFunction(
257 new_plan_sp->SetIsMasterPlan(true);
258 new_plan_sp->SetOkayToDiscard(false);
259 return new_plan_sp;
/freebsd-12-stable/contrib/llvm-project/lldb/source/API/
H A DSBThread.cpp612 ThreadPlanSP new_plan_sp; local
617 new_plan_sp = thread->QueueThreadPlanForStepOverRange(
621 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
625 error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
663 ThreadPlanSP new_plan_sp; local
680 new_plan_sp = thread->QueueThreadPlanForStepInRange(
685 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
690 error = ResumeNewPlan(exe_ctx, new_plan_sp.get());
720 ThreadPlanSP new_plan_sp(thread->QueueThreadPlanForStepOut(
725 error = ResumeNewPlan(exe_ctx, new_plan_sp
1005 ThreadPlanSP new_plan_sp = thread->QueueThreadPlanForStepScripted( local
[all...]
/freebsd-12-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThread.cpp624 ThreadPlanSP new_plan_sp; variable
671 new_plan_sp = thread->QueueThreadPlanForStepInRange(
678 if (new_plan_sp && !m_options.m_avoid_regexp.empty()) {
680 static_cast<ThreadPlanStepInRange *>(new_plan_sp.get());
684 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
690 new_plan_sp = thread->QueueThreadPlanForStepOverRange(
697 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
700 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
703 new_plan_sp = thread->QueueThreadPlanForStepSingleInstruction(
706 new_plan_sp
1145 ThreadPlanSP new_plan_sp; variable
[all...]

Completed in 220 milliseconds