Lines Matching full:time
23 void push(int stackLevel, uint64_t time, CallStackBase *base);
24 void pop(int stackLevel, uint64_t time, CallStackBase *base);
43 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base)
51 printf("%llu en thr %d %s %3d", time, base->getId(), type, stackLevel);
57 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base)
65 printf("%llu x thr %d %s %3d", time, base->getId(), type, stackLevel);
135 if (debugTime != 0 && event.time >= debugTime)
136 printf("debug time: %lld\n", debugTime);
141 // If the user requested a stack dump at a certain time,
142 // and we are at that time, then dump the stack and exit.
143 if (dumpTime > 0 && event.time >= dumpTime) {
151 stacks[ii]->popAll(event.time);