Lines Matching refs:threadId
63 int32_t threadId;
134 int32_t threadId = strtoul(cp, &cp, 0);
135 if (maxThreadId < threadId) maxThreadId = threadId;
159 uint32_t threadId;
174 * default values for the time and threadId.
177 threadId = 1;
181 threadId = strtoul(cp, &cp, 0);
186 if (callStack[threadId].frames == nullptr) {
188 callStack[threadId].frames = stk;
190 indentLevel = callStack[threadId].indentLevel;
198 records[nextRecord].threadId = threadId;
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;
329 void writeDataRecord(FILE* dataFp, int32_t threadId, uint32_t methodVal, uint32_t elapsedTime) {
331 putc(threadId, dataFp);
333 write2LE(dataFp, threadId);
393 writeDataRecord(dataFp, pRecord->threadId, val, pRecord->time);