Lines Matching refs:subentry
288 ProfilerSubEntry *subentry = (ProfilerSubEntry*) header; in freeSubEntry() local
289 free(subentry); in freeSubEntry()
330 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry); in initContext() local
331 if (subentry == NULL) in initContext()
332 subentry = newSubEntry(pObj, caller, entry); in initContext()
333 if (subentry) in initContext()
334 ++subentry->recursionLevel; in initContext()
356 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry); in Stop() local
357 if (subentry) { in Stop()
358 if (--subentry->recursionLevel == 0) in Stop()
359 subentry->tt += tt; in Stop()
361 ++subentry->recursivecallcount; in Stop()
362 subentry->it += it; in Stop()
363 ++subentry->callcount; in Stop()