Home
last modified time | relevance | path

Searched refs:f_back (Results 1 - 25 of 27) sorted by relevance

12

/third_party/python/Lib/
H A Dprofile.py124 [-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 Dbdb.py128 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 Dtraceback.py209 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 Dwarnings.py280 frame = frame.f_back
282 frame = frame.f_back
H A Dtrace.py517 parent_func = self.file_module_function_of(frame.f_back)
H A Ddoctest.py371 frame = sys._getframe().f_back
H A Dsubprocess.py368 while f := f.f_back:
H A Dpdb.py1694 pdb.set_trace(sys._getframe().f_back)
H A Dinspect.py470 f_back next outer frame object (this frame's caller)
1733 frame = frame.f_back
/third_party/python/Lib/test/
H A Dtest_frame.py91 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 Dtest_generators.py213 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 Dtest_sys_settrace.py186 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 Dtest_tracemalloc.py30 frame = frame.f_back
H A Dtest_coroutines.py2284 info = inspect.getframeinfo(inspect.currentframe().f_back)
/third_party/python/Python/
H A Dframe.c95 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 Dformat_helpers.py67 f = sys._getframe().f_back
H A Dbase_tasks.py53 f = f.f_back
/third_party/python/Objects/
H A Dframeobject.c827 {"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 Dpycore_frame.h17 PyFrameObject *f_back; /* previous frame, or NULL */ member
/third_party/vk-gl-cts/external/vulkan-docs/src/scripts/spec_tools/
H A Dmacro_checker_file.py1308 frame = currentframe().f_back
1335 frame = currentframe().f_back
1378 frame = currentframe().f_back
/third_party/python/Lib/logging/
H A D__init__.py171 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 Dscriptutil.py54 frame = frame.f_back
/third_party/python/Lib/idlelib/
H A Ddebugger.py39 prev_frame = frame.f_back
/third_party/python/Lib/test/test_capi/
H A Dtest_misc.py1367 """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 Ddescriptor.cc108 frame = frame->f_back; in _CalledFromGeneratedFile()

Completed in 47 milliseconds

12