Home
last modified time | relevance | path

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

/external/python/cpython3/Modules/
D_lsprof.c373 ProfilerEntry *profEntry; in ptrace_enter_call() local
385 profEntry = getEntry(pObj, key); in ptrace_enter_call()
386 if (profEntry == NULL) { in ptrace_enter_call()
387 profEntry = newProfilerEntry(pObj, key, userObj); in ptrace_enter_call()
388 if (profEntry == NULL) in ptrace_enter_call()
405 initContext(pObj, pContext, profEntry); in ptrace_enter_call()
416 ProfilerEntry *profEntry; in ptrace_leave_call() local
422 profEntry = getEntry(pObj, key); in ptrace_leave_call()
423 if (profEntry) { in ptrace_leave_call()
424 Stop(pObj, pContext, profEntry); in ptrace_leave_call()
[all …]
/external/python/cpython2/Modules/
D_lsprof.c374 ProfilerEntry *profEntry; in ptrace_enter_call() local
386 profEntry = getEntry(pObj, key); in ptrace_enter_call()
387 if (profEntry == NULL) { in ptrace_enter_call()
388 profEntry = newProfilerEntry(pObj, key, userObj); in ptrace_enter_call()
389 if (profEntry == NULL) in ptrace_enter_call()
406 initContext(pObj, pContext, profEntry); in ptrace_enter_call()
417 ProfilerEntry *profEntry; in ptrace_leave_call() local
423 profEntry = getEntry(pObj, key); in ptrace_leave_call()
424 if (profEntry) { in ptrace_leave_call()
425 Stop(pObj, pContext, profEntry); in ptrace_leave_call()
[all …]