Searched refs:f_back (Results 1 – 25 of 30) sorted by relevance
12
/third_party/python/Lib/ |
D | profile.py | 257 if self.cur and frame.f_back is not self.cur[-2]: 260 assert rframe.f_back is frame.f_back, ("Bad call", rfn, 261 rframe, rframe.f_back, 262 frame, frame.f_back) 265 frame.f_back is self.cur[-2]), ("Bad call", 291 assert frame is self.cur[-2].f_back, ("Bad return", self.cur[-3]) 361 self.f_back = prior
|
D | bdb.py | 128 self.botframe = frame.f_back # (CT) Note that this may also be None! 307 caller_frame = self.frame_returning.f_back 321 self._set_stopinfo(frame.f_back, frame) 329 frame = sys._getframe().f_back 334 frame = frame.f_back 348 frame = sys._getframe().f_back 351 frame = frame.f_back 541 f = f.f_back
|
D | traceback.py | 205 f = sys._getframe().f_back 212 f = sys._getframe().f_back 226 f = sys._getframe().f_back 316 f = sys._getframe().f_back.f_back 319 f = f.f_back
|
D | warnings.py | 280 frame = frame.f_back 282 frame = frame.f_back
|
D | trace.py | 516 parent_func = self.file_module_function_of(frame.f_back)
|
D | pdb.py | 1623 pdb.set_trace(sys._getframe().f_back)
|
D | doctest.py | 371 frame = sys._getframe().f_back
|
/third_party/python/Objects/ |
D | frameobject.c | 15 {"f_back", T_OBJECT, OFF(f_back), READONLY}, 597 Py_XDECREF(f->f_back); in frame_dealloc() 615 f->f_back = state->free_list; in frame_dealloc() 639 Py_VISIT(f->f_back); in frame_traverse() 807 state->free_list = state->free_list->f_back; in frame_alloc() 842 f->f_back = (PyFrameObject*)Py_XNewRef(tstate->frame); in _PyFrame_New_NoTrack() 1132 state->free_list = state->free_list->f_back; in _PyFrame_ClearFreeList() 1175 PyFrameObject *back = frame->f_back; in PyFrame_GetBack()
|
D | genobject.c | 202 assert(f->f_back == NULL); in gen_send_ex2() 203 f->f_back = tstate->frame; in gen_send_ex2() 220 assert(f->f_back == tstate->frame); in gen_send_ex2() 221 Py_CLEAR(f->f_back); in gen_send_ex2() 1171 frame = frame->f_back; in compute_cr_origin() 1191 frame = frame->f_back; in compute_cr_origin()
|
/third_party/python/Lib/test/ |
D | test_frame.py | 73 f.f_back.clear() 87 f.f_back.clear()
|
D | test_sys_settrace.py | 183 sys._getframe().f_back.f_trace = tracefunc 191 sys._getframe().f_back.f_trace = tracefunc 1291 f = f.f_back 1313 previous_frame = sys._getframe().f_back
|
D | test_generators.py | 463 frame = frame.f_back
|
D | test_tracemalloc.py | 30 frame = frame.f_back
|
D | test_coroutines.py | 2167 info = inspect.getframeinfo(inspect.currentframe().f_back)
|
D | test_exceptions.py | 337 co2 = tb.tb_frame.f_back.f_code
|
/third_party/python/Include/cpython/ |
D | frameobject.h | 30 struct _frame *f_back; /* previous frame, or NULL */ member
|
/third_party/python/Lib/asyncio/ |
D | format_helpers.py | 67 f = sys._getframe().f_back
|
D | base_tasks.py | 46 f = f.f_back
|
/third_party/python/Lib/logging/ |
D | __init__.py | 167 return sys.exc_info()[2].tb_frame.f_back 1029 frame = frame.f_back 1558 f = f.f_back 1561 f = f.f_back 1570 f = f.f_back
|
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
D | macro_checker_file.py | 1308 frame = currentframe().f_back 1335 frame = currentframe().f_back 1378 frame = currentframe().f_back
|
/third_party/python/Tools/c-analyzer/c_common/ |
D | scriptutil.py | 54 frame = frame.f_back
|
/third_party/python/Lib/idlelib/ |
D | debugger.py | 39 prev_frame = frame.f_back
|
/third_party/python/Python/ |
D | traceback.c | 840 PyFrameObject *back = frame->f_back; in dump_traceback()
|
/third_party/python/Doc/library/ |
D | traceback.rst | 192 Walk a stack following ``f.f_back`` from the given frame, yielding the frame
|
/third_party/protobuf/python/google/protobuf/pyext/ |
D | descriptor.cc | 108 frame = frame->f_back; in _CalledFromGeneratedFile()
|
12