Home | History | Annotate | Download | only in Core

Lines Matching refs:stack

103         TimerStack *stack = GetTimerStackForCurrentThread ();
104 if (stack)
106 if (stack->empty() == false)
107 stack->back()->ChildStarted (start_time);
108 stack->push_back(this);
130 TimerStack *stack = GetTimerStackForCurrentThread ();
131 if (stack)
133 assert (stack->back() == this);
134 stack->pop_back();
135 if (stack->empty() == false)
136 stack->back()->ChildStopped(stop_time);