Home | History | Annotate | Download | only in dmtracedump

Lines Matching full:indentlevel

79   int32_t indentLevel;
149 callStack[ii].indentLevel = 0;
157 int32_t indentLevel = 0;
190 indentLevel = callStack[threadId].indentLevel;
235 printf("Indent: %d; IndentLevel: %d; Line: %s", indent, indentLevel, buf);
239 if (indent == indentLevel + 1) { // Entering a method
241 callStack[threadId].frames[indentLevel] = &records[nextRecord];
242 } else if (indent == indentLevel) { // Exiting a method
245 if (callStack[threadId].frames[indentLevel - 1] == nullptr) {
249 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord];
252 if (indentLevel < 1) {
258 char* name = callStack[threadId].frames[indentLevel - 1]->fullName;
265 callStack[threadId].frames[indentLevel - 1]->fullName);
273 indentLevel, indent);
285 indentLevel = indent - 1;
286 callStack[threadId].frames[indentLevel] = &records[nextRecord];
290 indentLevel += 1;
292 indentLevel -= 1;
294 callStack[threadId].indentLevel = indentLevel;