Home | History | Annotate | Download | only in dmtracedump

Lines Matching defs:callStack

126     stack *callStack;
163 callStack = (stack *) malloc(sizeof(stack) * numThreads);
166 callStack[ii].frames = NULL;
167 callStack[ii].indentLevel = 0;
199 if (callStack[threadId].frames == NULL) {
202 callStack[threadId].frames = stk;
204 indentLevel = callStack[threadId].indentLevel;
261 callStack[threadId].frames[indentLevel] = &records[nextRecord];
264 if (callStack[threadId].frames[indentLevel - 1] == NULL) {
267 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord];
276 char *name = callStack[threadId].frames[indentLevel - 1]->fullName;
284 callStack[threadId].frames[indentLevel - 1]->fullName);
305 callStack[threadId].frames[indentLevel] = &records[nextRecord];
313 callStack[threadId].indentLevel = indentLevel;