Home
last modified time | relevance | path

Searched refs:subentry (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
DcProfile.py112 for subentry in entry.calls:
114 callers = callersdicts[id(subentry.code)]
117 nc = subentry.callcount
118 cc = nc - subentry.reccallcount
119 tt = subentry.inlinetime
120 ct = subentry.totaltime
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_lsprof.c288 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()
[all …]