Searched refs:OkayToDiscard (Results 1 - 4 of 4) sorted by relevance

/external/lldb/include/lldb/Target/
H A DThreadPlanBase.h45 virtual bool OkayToDiscard() function in class:lldb_private::ThreadPlanBase
H A DThreadPlan.h127 // discarded, it can return true to OkayToDiscard, and it and all its dependent plans will be preserved when
130 // The other effect of being a master plan is that when the Master plan is done , if it has set "OkayToDiscard" to false,
131 // then it will be popped & execution will stop and return to the user. Remember that if OkayToDiscard is false, the
132 // plan will be popped and control will be given to the next plan above it on the stack So setting OkayToDiscard to
140 // FIXME: MasterPlan & OkayToDiscard aren't really orthogonal. MasterPlan designation means that this plan controls
141 // it's fate and the fate of plans below it. OkayToDiscard tells whether the MasterPlan wants to stay on the stack. I
401 OkayToDiscard();
641 OkayToDiscard () function in class:lldb_private::ThreadPlanNull
/external/lldb/source/Target/
H A DThreadPlan.cpp197 ThreadPlan::OkayToDiscard() function in class:ThreadPlan
H A DThread.cpp796 if (plan_ptr->IsMasterPlan() && !plan_ptr->OkayToDiscard())
845 if (should_stop && current_plan->IsMasterPlan() && !current_plan->OkayToDiscard())
1286 discard = m_plan_stack[master_plan_idx]->OkayToDiscard();
1304 // The bottom-most plan never gets discarded. "OkayToDiscard" for it means

Completed in 134 milliseconds