/external/python/cpython2/Lib/ |
D | bdb.py | 75 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
|
D | profile.py | 278 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
|
D | traceback.py | 269 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/ |
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 | 126 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
|
D | traceback.py | 189 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/ |
D | pyperf.h | 64 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/ |
D | genobject.c | 81 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()
|
D | frameobject.c | 18 {"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/ |
D | converter_testing.py | 51 frame = frame.f_back 57 frame = frame.f_back
|
/external/llvm-project/llvm/test/CodeGen/BPF/ |
D | simplifycfg.ll | 14 ; 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/ |
D | frameobject.c | 15 {"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/ |
D | LitConfig.py | 133 f = f.f_back.f_back
|
/external/python/cpython3/Lib/test/ |
D | test_frame.py | 72 f.f_back.clear() 86 f.f_back.clear()
|
/external/llvm-project/llvm/utils/lit/lit/ |
D | LitConfig.py | 167 f = f.f_back.f_back
|
/external/tensorflow/tensorflow/python/util/ |
D | deprecation.py | 104 f = inspect.currentframe().f_back.f_back 105 parent = f.f_back
|
/external/python/cpython3/Include/cpython/ |
D | frameobject.h | 19 struct _frame *f_back; /* previous frame, or NULL */ member
|
/external/python/cpython2/Include/ |
D | frameobject.h | 18 struct _frame *f_back; /* previous frame, or NULL */ member
|
/external/tensorflow/tensorflow/python/platform/ |
D | tf_logging.py | 52 f = f.f_back 57 f = f.f_back
|
/external/python/cpython2/Lib/ctypes/test/ |
D | __init__.py | 24 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/ |
D | logging_manager.py | 114 f = sys._getframe(2).f_back 120 f = f.f_back 124 f = f.f_back
|
/external/tensorflow/tensorflow/python/framework/ |
D | traceable_stack.py | 59 parent = frame.f_back
|
/external/tensorflow/tensorflow/compiler/xla/python/ |
D | traceback.cc | 72 py_frame = py_frame->f_back) { in Get()
|
/external/python/cpython2/Lib/hotshot/ |
D | stats.py | 88 self.f_back = back
|
/external/python/cpython3/Lib/asyncio/ |
D | format_helpers.py | 67 f = sys._getframe().f_back
|