Searched refs:stackLevel (Results 1 – 4 of 4) sorted by relevance
/sdk/emulator/qtools/ |
D | callstack.h | 29 virtual void push(int stackLevel, uint64_t time, CallStackBase *base) {}; in push() argument 30 virtual void pop(int stackLevel, uint64_t time, CallStackBase *base) {}; in pop() argument 560 int stackLevel; in doPop() local 562 for (stackLevel = mTop - 1; stackLevel >= 0; --stackLevel) { in doPop() 563 if (event->bb_addr == mFrames[stackLevel].addr) { in doPop() 570 if (mFrames[stackLevel].flags & FRAME::kPopBarrier) { in doPop() 573 if (mFrames[stackLevel].flags & FRAME::kInterpreted) { in doPop() 580 stackLevel += 1; in doPop() 587 if (stackLevel < 0 || event->bb_addr != mFrames[stackLevel].addr) { in doPop() 589 for (stackLevel = mTop - 1; stackLevel >= 0; --stackLevel) { in doPop() [all …]
|
D | stack_dump.cpp | 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) in push() argument 51 printf("%llu en thr %d %s %3d", time, base->getId(), type, stackLevel); in push() 52 for (int ii = 0; ii < stackLevel; ++ii) in push() 57 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base) in pop() argument 65 printf("%llu x thr %d %s %3d", time, base->getId(), type, stackLevel); in pop() 66 for (int ii = 0; ii < stackLevel; ++ii) in pop()
|
D | q2dm.cpp | 27 void push(int stackLevel, uint64_t time, CallStackBase *base); 28 void pop(int stackLevel, uint64_t time, CallStackBase *base); 71 void MyFrame::push(int stackLevel, uint64_t time, CallStackBase *base) in push() argument 78 stack->getGlobalTime(time), pid, stackLevel, in push() 93 void MyFrame::pop(int stackLevel, uint64_t time, CallStackBase *base) in pop() argument 100 stack->getGlobalTime(time), pid, stackLevel, in pop()
|
D | coverage.cpp | 24 void push(int stackLevel, uint64_t time, CallStackBase *base) { in push() argument 27 void pop(int stackLevel, uint64_t time, CallStackBase *base) { in pop() argument
|