Home
last modified time | relevance | path

Searched refs:f_back (Results 1 – 25 of 30) sorted by relevance

12

/third_party/python/Lib/
Dprofile.py257 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
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
Dtraceback.py205 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
Dwarnings.py280 frame = frame.f_back
282 frame = frame.f_back
Dtrace.py516 parent_func = self.file_module_function_of(frame.f_back)
Dpdb.py1623 pdb.set_trace(sys._getframe().f_back)
Ddoctest.py371 frame = sys._getframe().f_back
/third_party/python/Objects/
Dframeobject.c15 {"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()
Dgenobject.c202 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/
Dtest_frame.py73 f.f_back.clear()
87 f.f_back.clear()
Dtest_sys_settrace.py183 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
Dtest_generators.py463 frame = frame.f_back
Dtest_tracemalloc.py30 frame = frame.f_back
Dtest_coroutines.py2167 info = inspect.getframeinfo(inspect.currentframe().f_back)
Dtest_exceptions.py337 co2 = tb.tb_frame.f_back.f_code
/third_party/python/Include/cpython/
Dframeobject.h30 struct _frame *f_back; /* previous frame, or NULL */ member
/third_party/python/Lib/asyncio/
Dformat_helpers.py67 f = sys._getframe().f_back
Dbase_tasks.py46 f = f.f_back
/third_party/python/Lib/logging/
D__init__.py167 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/
Dmacro_checker_file.py1308 frame = currentframe().f_back
1335 frame = currentframe().f_back
1378 frame = currentframe().f_back
/third_party/python/Tools/c-analyzer/c_common/
Dscriptutil.py54 frame = frame.f_back
/third_party/python/Lib/idlelib/
Ddebugger.py39 prev_frame = frame.f_back
/third_party/python/Python/
Dtraceback.c840 PyFrameObject *back = frame->f_back; in dump_traceback()
/third_party/python/Doc/library/
Dtraceback.rst192 Walk a stack following ``f.f_back`` from the given frame, yielding the frame
/third_party/protobuf/python/google/protobuf/pyext/
Ddescriptor.cc108 frame = frame->f_back; in _CalledFromGeneratedFile()

12