Home | History | Annotate | Download | only in dmtracedump

Lines Matching full:callstack

146   stack* callStack = new stack[numThreads];
148 callStack[ii].frames = nullptr;
149 callStack[ii].indentLevel = 0;
186 if (callStack[threadId].frames == nullptr) {
188 callStack[threadId].frames = stk;
190 indentLevel = callStack[threadId].indentLevel;
241 callStack[threadId].frames[indentLevel] = &records[nextRecord];
245 if (callStack[threadId].frames[indentLevel - 1] == nullptr) {
249 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord];
258 char* name = callStack[threadId].frames[indentLevel - 1]->fullName;
265 callStack[threadId].frames[indentLevel - 1]->fullName);
286 callStack[threadId].frames[indentLevel] = &records[nextRecord];
294 callStack[threadId].indentLevel = indentLevel;