Home
last modified time | relevance | path

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

1234

/external/python/cpython2/Lib/
Dbdb.py75 self.botframe = frame.f_back # (CT) Note that this may also be None!
123 frame = frame.f_back
199 caller_frame = self.frame_returning.f_back
210 self._set_stopinfo(frame.f_back, frame)
218 frame = sys._getframe().f_back
223 frame = frame.f_back
233 frame = sys._getframe().f_back
236 frame = frame.f_back
349 f = f.f_back
Dprofile.py278 if self.cur and frame.f_back is not self.cur[-2]:
281 assert rframe.f_back is frame.f_back, ("Bad call", rfn,
282 rframe, rframe.f_back,
283 frame, frame.f_back)
286 frame.f_back is self.cur[-2]), ("Bad call",
312 assert frame is self.cur[-2].f_back, ("Bad return", self.cur[-3])
382 self.f_back = prior
Dtraceback.py269 f = sys.exc_info()[2].tb_frame.f_back
278 f = sys.exc_info()[2].tb_frame.f_back
294 f = sys.exc_info()[2].tb_frame.f_back
310 f = f.f_back
/external/python/cpython3/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.py126 self.botframe = frame.f_back # (CT) Note that this may also be None!
305 caller_frame = self.frame_returning.f_back
319 self._set_stopinfo(frame.f_back, frame)
327 frame = sys._getframe().f_back
332 frame = frame.f_back
346 frame = sys._getframe().f_back
349 frame = frame.f_back
524 f = f.f_back
Dtraceback.py189 f = sys._getframe().f_back
196 f = sys._getframe().f_back
210 f = sys._getframe().f_back
299 f = sys._getframe().f_back.f_back
302 f = f.f_back
/external/linux-kselftest/tools/testing/selftests/bpf/progs/
Dpyperf.h64 void* f_back; // PyFrameObject.f_back, previous frame member
85 bpf_probe_read_user(&frame->f_back, in get_frame_data()
86 sizeof(frame->f_back), in get_frame_data()
239 frame_ptr = frame.f_back; in __on_event()
/external/python/cpython2/Objects/
Dgenobject.c81 assert(f->f_back == NULL); in gen_send_ex()
82 f->f_back = tstate->frame; in gen_send_ex()
91 assert(f->f_back == tstate->frame); in gen_send_ex()
92 Py_CLEAR(f->f_back); in gen_send_ex()
Dframeobject.c18 {"f_back", T_OBJECT, OFF(f_back), RO},
502 Py_XDECREF(f->f_back); in frame_dealloc()
516 f->f_back = free_list; in frame_dealloc()
532 Py_VISIT(f->f_back); in frame_traverse()
727 free_list = free_list->f_back; in PyFrame_New()
750 f->f_back = back; in PyFrame_New()
1003 free_list = free_list->f_back; in PyFrame_ClearFreeList()
/external/tensorflow/tensorflow/python/autograph/core/
Dconverter_testing.py51 frame = frame.f_back
57 frame = frame.f_back
/external/llvm-project/llvm/test/CodeGen/BPF/
Dsimplifycfg.ll14 ; void *f_back;
27 ; frame_ptr = frame.f_back;
85 %f_back = getelementptr inbounds %struct.FrameData, %struct.FrameData* %frame, i32 0, i32 0
86 %9 = load i8*, i8** %f_back, align 8, !tbaa !8
/external/python/cpython3/Objects/
Dframeobject.c15 {"f_back", T_OBJECT, OFF(f_back), READONLY},
588 Py_XDECREF(f->f_back); in frame_dealloc()
601 f->f_back = free_list; in frame_dealloc()
625 Py_VISIT(f->f_back); in frame_traverse()
798 free_list = free_list->f_back; in frame_alloc()
892 f->f_back = back; in _PyFrame_New_NoTrack()
1183 free_list = free_list->f_back; in _PyFrame_ClearFreeList()
1224 PyFrameObject *back = frame->f_back; in PyFrame_GetBack()
/external/llvm/utils/lit/lit/
DLitConfig.py133 f = f.f_back.f_back
/external/python/cpython3/Lib/test/
Dtest_frame.py72 f.f_back.clear()
86 f.f_back.clear()
/external/llvm-project/llvm/utils/lit/lit/
DLitConfig.py167 f = f.f_back.f_back
/external/tensorflow/tensorflow/python/util/
Ddeprecation.py104 f = inspect.currentframe().f_back.f_back
105 parent = f.f_back
/external/python/cpython3/Include/cpython/
Dframeobject.h19 struct _frame *f_back; /* previous frame, or NULL */ member
/external/python/cpython2/Include/
Dframeobject.h18 struct _frame *f_back; /* previous frame, or NULL */ member
/external/tensorflow/tensorflow/python/platform/
Dtf_logging.py52 f = f.f_back
57 f = f.f_back
/external/python/cpython2/Lib/ctypes/test/
D__init__.py24 if sys._getframe().f_back.f_globals.get("__name__") == "__main__":
39 if sys._getframe().f_back.f_globals.get("__name__") == "__main__":
/external/autotest/client/common_lib/
Dlogging_manager.py114 f = sys._getframe(2).f_back
120 f = f.f_back
124 f = f.f_back
/external/tensorflow/tensorflow/python/framework/
Dtraceable_stack.py59 parent = frame.f_back
/external/tensorflow/tensorflow/compiler/xla/python/
Dtraceback.cc72 py_frame = py_frame->f_back) { in Get()
/external/python/cpython2/Lib/hotshot/
Dstats.py88 self.f_back = back
/external/python/cpython3/Lib/asyncio/
Dformat_helpers.py67 f = sys._getframe().f_back

1234