Lines Matching refs:subentry
258 ProfilerSubEntry *subentry = (ProfilerSubEntry*) header;
259 PyMem_Free(subentry);
300 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry);
301 if (subentry == NULL)
302 subentry = newSubEntry(pObj, caller, entry);
303 if (subentry)
304 ++subentry->recursionLevel;
326 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry);
327 if (subentry) {
328 if (--subentry->recursionLevel == 0)
329 subentry->tt += tt;
331 ++subentry->recursivecallcount;
332 subentry->it += it;
333 ++subentry->callcount;