Home
last modified time | relevance | path

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

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c19 {"f_code", T_OBJECT, OFF(f_code), RO},
69 return PyCode_Addr2Line(f->f_code, f->f_lasti); in PyFrame_GetLineNumber()
137 if (new_lineno < f->f_code->co_firstlineno) { in frame_setlineno()
143 else if (new_lineno == f->f_code->co_firstlineno) { in frame_setlineno()
145 new_lineno = f->f_code->co_firstlineno; in frame_setlineno()
151 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
155 line = f->f_code->co_firstlineno; in frame_setlineno()
177 PyString_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len); in frame_setlineno()
477 co = f->f_code; in frame_dealloc()
499 Py_VISIT(f->f_code); in frame_traverse()
[all …]
Dgenobject.c391 Py_INCREF(f->f_code); in PyGen_New()
392 gen->gi_code = (PyObject *)(f->f_code); in PyGen_New()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c19 {"f_code", T_OBJECT, OFF(f_code), RO},
69 return PyCode_Addr2Line(f->f_code, f->f_lasti); in PyFrame_GetLineNumber()
137 if (new_lineno < f->f_code->co_firstlineno) { in frame_setlineno()
143 else if (new_lineno == f->f_code->co_firstlineno) { in frame_setlineno()
145 new_lineno = f->f_code->co_firstlineno; in frame_setlineno()
151 PyString_AsStringAndSize(f->f_code->co_lnotab, in frame_setlineno()
155 line = f->f_code->co_firstlineno; in frame_setlineno()
177 PyString_AsStringAndSize(f->f_code->co_code, (char **)&code, &code_len); in frame_setlineno()
475 co = f->f_code; in frame_dealloc()
497 Py_VISIT(f->f_code); in frame_traverse()
[all …]
Dgenobject.c388 Py_INCREF(f->f_code); in PyGen_New()
389 gen->gi_code = (PyObject *)(f->f_code); in PyGen_New()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
Dbdb.py122 filename = self.canonic(frame.f_code.co_filename)
129 lineno = frame.f_code.co_firstlineno
147 return self.canonic(frame.f_code.co_filename) in self.breaks
351 filename = self.canonic(frame.f_code.co_filename)
353 if frame.f_code.co_name:
354 s = s + frame.f_code.co_name
532 if frame.f_code.co_name != b.funcname:
603 name = frame.f_code.co_name
608 name = frame.f_code.co_name
610 fn = self.canonic(frame.f_code.co_filename)
Dtraceback.py63 co = f.f_code
97 co = f.f_code
301 co = f.f_code
Dtrace.py538 code = frame.f_code
605 code = frame.f_code
624 filename = frame.f_code.co_filename
639 filename = frame.f_code.co_filename
651 filename = frame.f_code.co_filename
Dinspect.py418 object = object.f_code
571 object = object.f_code
826 args, varargs, varkw = getargs(frame.f_code)
1016 return Traceback(filename, lineno, frame.f_code.co_name, lines, index)
Ddis.py59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
Dpdb.py153 if (self.mainpyfile != self.canonic(frame.f_code.co_filename)
429 filename = self.curframe.f_code.co_filename
739 co = self.curframe.f_code
806 filename = self.curframe.f_code.co_filename
Dasyncore.py559 tb.tb_frame.f_code.co_filename,
560 tb.tb_frame.f_code.co_name,
Dprofile.py297 fcode = frame.f_code
390 self.f_code = code
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
Dtraceback.py63 co = f.f_code
97 co = f.f_code
302 co = f.f_code
Dinspect.py416 object = object.f_code
573 object = object.f_code
829 args, varargs, varkw = getargs(frame.f_code)
1019 return Traceback(filename, lineno, frame.f_code.co_name, lines, index)
Ddis.py59 disassemble(tb.tb_frame.f_code, tb.tb_lasti)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dframeobject.h19 PyCodeObject *f_code; /* code segment */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dframeobject.h19 PyCodeObject *f_code; /* code segment */ member
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dtraceback.c249 tb->tb_frame->f_code->co_filename), in tb_printinternal()
251 PyString_AsString(tb->tb_frame->f_code->co_name)); in tb_printinternal()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dtraceback.c249 tb->tb_frame->f_code->co_filename), in tb_printinternal()
251 PyString_AsString(tb->tb_frame->f_code->co_name)); in tb_printinternal()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/hotshot/
Dstats.py89 self.f_code = code
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_exceptions.py165 co = tb.tb_frame.f_code
177 co = tb.tb_frame.f_code
180 co2 = tb.tb_frame.f_back.f_code
Dtest_sys.py287 is sys._getframe().f_code
629 ncells = len(x.f_code.co_cellvars)
630 nfrees = len(x.f_code.co_freevars)
631 extras = x.f_code.co_stacksize + x.f_code.co_nlocals +\
Dtest_sys_settrace.py472 if not self.done and frame.f_code == self.function.func_code:
473 firstLine = frame.f_code.co_firstlineno
Dtest_sys_setprofile.py342 code = function.f_code
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
D_lsprof.c443 ptrace_enter_call(self, (void *)frame->f_code, in profiler_callback()
444 (PyObject *)frame->f_code); in profiler_callback()
450 ptrace_leave_call(self, (void *)frame->f_code); in profiler_callback()

12