Home | History | Annotate | Download | only in dmtracedump

Lines Matching refs:threadId

65     int                 threadId;
121 unsigned int time = 0, threadId;
148 int threadId = strtoul(cp, &cp, 0);
149 if (maxThreadId < threadId)
150 maxThreadId = threadId;
186 * default values for the time and threadId.
189 threadId = 1;
194 threadId = strtoul(cp, &cp, 0);
199 if (callStack[threadId].frames == NULL) {
202 callStack[threadId].frames = stk;
204 indentLevel = callStack[threadId].indentLevel;
212 records[nextRecord].threadId = threadId;
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;
352 void writeDataRecord(FILE *dataFp, int threadId, unsigned int methodVal,
356 putc(threadId, dataFp);
358 write2LE(dataFp, threadId);
430 writeDataRecord(dataFp, pRecord->threadId, val, pRecord->time);