Lines Matching refs:records
72 dataRecord* records; variable
145 records = new dataRecord[numRecords]; in parseInputFile()
197 records[nextRecord].time = time; in parseInputFile()
198 records[nextRecord].threadId = threadId; in parseInputFile()
208 records[nextRecord].fullName = strndup(save_cp, len); in parseInputFile()
211 records[nextRecord].className = nullptr; in parseInputFile()
212 records[nextRecord].methodName = nullptr; in parseInputFile()
213 records[nextRecord].signature = nullptr; in parseInputFile()
217 if (len > 0) records[nextRecord].className = strndup(save_cp, len); in parseInputFile()
223 records[nextRecord].methodName = strndup(save_cp, len); in parseInputFile()
229 records[nextRecord].signature = strndup(save_cp, len); in parseInputFile()
240 if (verbose) printf(" Entering %s\n", records[nextRecord].fullName); in parseInputFile()
241 callStack[threadId].frames[indentLevel] = &records[nextRecord]; in parseInputFile()
248 records[nextRecord].fullName); in parseInputFile()
249 callStack[threadId].frames[indentLevel - 1] = &records[nextRecord]; in parseInputFile()
259 if (strcmp(name, records[nextRecord].fullName) == 0) { in parseInputFile()
279 printf(" Entering %s\n", records[nextRecord].fullName); in parseInputFile()
286 callStack[threadId].frames[indentLevel] = &records[nextRecord]; in parseInputFile()
293 records[nextRecord].action = action; in parseInputFile()
300 memset(&records[nextRecord], 0, sizeof(dataRecord)); in parseInputFile()
358 for (dataRecord* pRecord = records; pRecord->fullName; ++pRecord) { in writeKeyMethods()
391 for (dataRecord* pRecord = records; pRecord->fullName; ++pRecord) { in writeDataRecords()