Home | History | Annotate | Download | only in qtools

Lines Matching refs:time

29     virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {};
30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {};
42 uint32_t time; // for debugging when a problem occurred
58 void popAll(uint64_t time);
59 void threadStart(uint64_t time);
60 void threadStop(uint64_t time);
69 uint64_t getGlobalTime(uint64_t time) { return time + mSkippedTime; }
83 uint64_t time, int flags);
84 void doSimplePop(uint64_t time);
142 if (sCurrentMethod.time == 0) {
144 sCurrentMethod.time = ~0ull;
145 sNextMethod.time = ~0ull;
147 if (sNextMethod.time != ~0ull && mTrace->ReadMethod(&sNextMethod)) {
148 sNextMethod.time = ~0ull;
219 uint64_t time = event->time - mSkippedTime;
224 doSimplePush(function, 0, time, 0);
233 CallStack<FRAME, BASE>::threadStart(uint64_t time)
235 mSkippedTime += time - mLastRunTime;
240 CallStack<FRAME, BASE>::threadStop(uint64_t time)
242 mLastRunTime = time;
385 uint64_t time = event->time - mSkippedTime;
432 doSimplePop(time);
463 doSimplePop(time);
494 doSimplePush(function, retAddr, time, flags);
499 uint64_t time, int flags)
511 mFrames[mTop].time = time;
512 mFrames[mTop].global_time = time + mSkippedTime;
514 mFrames[mTop].push(mTop, time, this);
519 void CallStack<FRAME, BASE>::doSimplePop(uint64_t time)
526 mFrames[mTop].pop(mTop, time, this);
555 uint64_t time = event->time - mSkippedTime;
648 doSimplePop(time);
681 void CallStack<FRAME, BASE>::popAll(uint64_t time)
683 time -= mSkippedTime;
685 doSimplePop(time);
693 uint64_t time = event->time - mSkippedTime;
717 doSimplePop(time);
727 // pop can happen because the user can start tracing at any time and so
729 while (event->time >= sNextMethod.time) {
732 sNextMethod.time = ~0ull;
736 if (event->time >= sCurrentMethod.time && event->pid == sCurrentMethod.pid) {
737 uint64_t time = event->time - mSkippedTime;
740 doSimplePush(function, 0, time, FRAME::kInterpreted);
743 doSimplePush(function, 0, time, FRAME::kStartNative);
752 // of the trace, we set the time to the maximum value (~0).
754 if (sNextMethod.time != ~0ull && mTrace->ReadMethod(&sNextMethod)) {
755 sNextMethod.time = ~0ull;
768 ii, mFrames[ii].time, mFrames[ii].global_time,