Home | History | Annotate | Download | only in qtools

Lines Matching defs:mStack

122         Stack *mStack = mStacks[proc->pid];
125 if (mStack == NULL) {
126 mStack = new Stack();
127 mStacks[proc->pid] = mStack;
135 mStack->push(pframe);
137 pframe = mStack->pop();
177 Stack *mStack = mStacks[pid];
178 frame **mFrames = mStack->frames;
181 int mTop = mStack->top;
239 Stack *mStack = mStacks[pid];
242 int mTop = mStack->top;
245 mframe = mStack->frames[ii];
261 if (mIndex >= mTop || addr != mStack->frames[mIndex]->addr) {