Home | History | Annotate | Download | only in qtools

Lines Matching refs:fstack

82     FunctionStack *fstack = dmtrace_stack[pid];
83 if (fstack == NULL) {
84 fstack = new FunctionStack();
85 dmtrace_stack[pid] = fstack;
88 fstack->push(function);
104 FunctionStack *fstack = dmtrace_stack[pid];
105 if (fstack == NULL) {
106 fstack = new FunctionStack();
107 dmtrace_stack[pid] = fstack;
110 symbol_type *sym = fstack->pop();
114 fstack->showStack();