Searched defs:subentry (Results 1 - 2 of 2) sorted by relevance

/external/python/cpython2/Modules/
H A D_lsprof.c288 ProfilerSubEntry *subentry = (ProfilerSubEntry*) header; local
289 free(subentry);
330 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry); local
331 if (subentry == NULL)
332 subentry = newSubEntry(pObj, caller, entry);
333 if (subentry)
334 ++subentry->recursionLevel;
356 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry); local
357 if (subentry) {
358 if (--subentry
[all...]
/external/python/cpython3/Modules/
H A D_lsprof.c287 ProfilerSubEntry *subentry = (ProfilerSubEntry*) header; local
288 PyMem_Free(subentry);
329 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry); local
330 if (subentry == NULL)
331 subentry = newSubEntry(pObj, caller, entry);
332 if (subentry)
333 ++subentry->recursionLevel;
355 ProfilerSubEntry *subentry = getSubEntry(pObj, caller, entry); local
356 if (subentry) {
357 if (--subentry
[all...]

Completed in 115 milliseconds