Searched refs:f_back (Results 1 - 25 of 27) sorted by relevance
12
| /third_party/python/Lib/ |
| H A D | profile.py | 124 [-1] = Our parent 6-tuple (corresponds to frame.f_back). 258 if self.cur and frame.f_back is not self.cur[-2]: 261 assert rframe.f_back is frame.f_back, ("Bad call", rfn, 262 rframe, rframe.f_back, 263 frame, frame.f_back) 266 frame.f_back is self.cur[-2]), ("Bad call", 292 assert frame is self.cur[-2].f_back, ("Bad return", self.cur[-3]) 362 self.f_back = prior
|
| H A 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
|
| H A D | traceback.py | 209 f = sys._getframe().f_back 216 f = sys._getframe().f_back 230 f = sys._getframe().f_back 328 This will follow f.f_back from the given frame. If no frame is given, the 332 f = sys._getframe().f_back.f_back.f_back.f_back 335 f = f.f_back
|
| H A D | warnings.py | 280 frame = frame.f_back 282 frame = frame.f_back
|
| H A D | trace.py | 517 parent_func = self.file_module_function_of(frame.f_back)
|
| H A D | doctest.py | 371 frame = sys._getframe().f_back
|
| H A D | subprocess.py | 368 while f := f.f_back:
|
| H A D | pdb.py | 1694 pdb.set_trace(sys._getframe().f_back)
|
| H A D | inspect.py | 470 f_back next outer frame object (this frame's caller) 1733 frame = frame.f_back
|
| /third_party/python/Lib/test/ |
| H A D | test_frame.py | 91 f.f_back.clear() 105 f.f_back.clear() 282 sneaky_frame_object = sys._getframe().f_back 369 sneaky_frame_object = sneaky_frame_object.f_back
|
| H A D | test_generators.py | 213 self.assertIsNone(ag.ag_frame.f_back) 219 self.assertIsNone(cr.cr_frame.f_back) 226 self.assertIsNone(gi.gi_frame.f_back) 520 frame = frame.f_back
|
| H A D | test_sys_settrace.py | 186 sys._getframe().f_back.f_trace = tracefunc 194 sys._getframe().f_back.f_trace = tracefunc 1825 f = f.f_back 1847 previous_frame = sys._getframe().f_back
|
| H A D | test_tracemalloc.py | 30 frame = frame.f_back
|
| H A D | test_coroutines.py | 2284 info = inspect.getframeinfo(inspect.currentframe().f_back)
|
| /third_party/python/Python/ |
| H A D | frame.c | 95 assert(f->f_back == NULL); in take_ownership() 101 /* Link PyFrameObjects.f_back and remove link through _PyInterpreterFrame.previous */ in take_ownership() 110 f->f_back = (PyFrameObject *)Py_NewRef(back); in take_ownership()
|
| /third_party/python/Lib/asyncio/ |
| H A D | format_helpers.py | 67 f = sys._getframe().f_back
|
| H A D | base_tasks.py | 53 f = f.f_back
|
| /third_party/python/Objects/ |
| H A D | frameobject.c | 827 {"f_back", (getter)frame_getback, NULL, NULL}, 845 f_back next item on free list, or NULL 878 Py_CLEAR(f->f_back); in frame_dealloc() 888 Py_VISIT(f->f_back); in frame_traverse() 1028 f->f_back = NULL; in _PyFrame_New_NoTrack() 1324 PyFrameObject *back = frame->f_back; in PyFrame_GetBack()
|
| /third_party/python/Include/internal/ |
| H A D | pycore_frame.h | 17 PyFrameObject *f_back; /* previous frame, or NULL */ member
|
| /third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/ |
| H A D | macro_checker_file.py | 1308 frame = currentframe().f_back 1335 frame = currentframe().f_back 1378 frame = currentframe().f_back
|
| /third_party/python/Lib/logging/ |
| H A D | __init__.py | 171 return sys.exc_info()[2].tb_frame.f_back 644 # traceback.print_stack(tb.tb_frame.f_back, file=sio) 1039 frame = frame.f_back 1572 next_f = f.f_back
|
| /third_party/python/Tools/c-analyzer/c_common/ |
| H A D | scriptutil.py | 54 frame = frame.f_back
|
| /third_party/python/Lib/idlelib/ |
| H A D | debugger.py | 39 prev_frame = frame.f_back
|
| /third_party/python/Lib/test/test_capi/ |
| H A D | test_misc.py | 1367 """Test that accessing `f_back` does not cause a segmentation fault on 1374 self.assertIsNone(frame.f_back)
|
| /third_party/protobuf/python/google/protobuf/pyext/ |
| H A D | descriptor.cc | 108 frame = frame->f_back; in _CalledFromGeneratedFile()
|
Completed in 47 milliseconds
12