Home | History | Annotate | Download | only in dmtracedump

Lines Matching defs:threadId

133   int32_t threadId;
667 pKeys->threads[i].threadId = atoi(data);
796 return ((const ThreadEntry*) thread1)->threadId -
797 ((const ThreadEntry*) thread2)->threadId;
883 printf("%2d %s\n", pKeys->threads[i].threadId, pKeys->threads[i].threadName);
990 * Reads the next data record, and assigns the data values to threadId,
991 * methodVal and elapsedTime. On end-of-file, the threadId, methodVal,
995 int32_t readDataRecord(FILE* dataFp, DataHeader* dataHeader, int32_t* threadId,
1007 *threadId = id;
1061 printf("Trace (threadID action usecs class.method signature):\n");
1067 int32_t threadId;
1070 if (readDataRecord(dataFp, &dataHeader, &threadId, &methodVal, &elapsedTime))
1082 traceData.depth[threadId]++;
1089 int32_t printDepth = traceData.depth[threadId];
1107 printf("%2d %s%c %8" PRIu64 "%c%s%s.%s %s\n", threadId, actionStr[action],
1112 printf("%2d %s%c %8" PRIu64 "%c%s%s\n", threadId, actionStr[action],
1118 traceData.depth[threadId]--; /* METHOD_TRACE_EXIT or METHOD_TRACE_UNROLL */
2056 int32_t threadId;
2059 if (readDataRecord(dataFp, &dataHeader, &threadId, &methodVal, &currentTime))
2066 CallStack* pStack = traceData->stacks[threadId];
2074 traceData->stacks[threadId] = pStack;
2084 threadId, currentTime, action, pStack->threadStartTime,
2090 threadId, currentTime, action, pStack->threadStartTime,
2169 for (int32_t threadId = 0; threadId < MAX_THREADS; ++threadId) {
2170 CallStack* pStack = traceData->stacks[threadId];