Home
last modified time | relevance | path

Searched refs:pyframe (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Misc/
Dgdbinit79 pyframe
86 define pyframe
114 pyframe
140 pyframe
/external/python/cpython2/Misc/
Dgdbinit74 pyframe
78 define pyframe
106 pyframe
133 pyframe
/external/python/cpython3/Modules/
D_tracemalloc.c328 tracemalloc_get_frame(PyFrameObject *pyframe, frame_t *frame) in tracemalloc_get_frame() argument
336 lineno = PyFrame_GetLineNumber(pyframe); in tracemalloc_get_frame()
341 code = pyframe->f_code; in tracemalloc_get_frame()
428 PyFrameObject *pyframe; in traceback_get_frames() local
438 for (pyframe = tstate->frame; pyframe != NULL; pyframe = pyframe->f_back) { in traceback_get_frames()
439 tracemalloc_get_frame(pyframe, &traceback->frames[traceback->nframe]); in traceback_get_frames()