Home
last modified time | relevance | path

Searched refs:PyFrameObject (Results 1 – 18 of 18) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Dframeobject.h50 } PyFrameObject; typedef
61 PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
69 PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
70 PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
74 PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int);
78 PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
79 PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *);
84 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Dframeobject.h50 } PyFrameObject; typedef
61 PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
69 PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
70 PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
74 PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int);
78 PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
79 PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *);
84 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dframeobject.c15 #define OFF(x) offsetof(PyFrameObject, x)
27 static PyObject * frame_get_ ## NAME(PyFrameObject *f) { \
36 static int frame_set_ ## NAME(PyFrameObject *f, PyObject *new) { \
56 frame_getlocals(PyFrameObject *f, void *closure) in WARN_GET_SET()
64 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber()
73 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno()
94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno) in frame_setlineno()
352 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace()
365 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace()
381 frame_getrestricted(PyFrameObject *f, void *closure) in frame_getrestricted()
[all …]
Dgenobject.c48 PyFrameObject *f = gen->gi_frame; in gen_send_ex()
383 PyGen_New(PyFrameObject *f) in PyGen_New()
403 PyFrameObject *f = gen->gi_frame; in PyGen_NeedsFinalizing()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dframeobject.c15 #define OFF(x) offsetof(PyFrameObject, x)
27 static PyObject * frame_get_ ## NAME(PyFrameObject *f) { \
36 static int frame_set_ ## NAME(PyFrameObject *f, PyObject *new) { \
56 frame_getlocals(PyFrameObject *f, void *closure) in WARN_GET_SET()
64 PyFrame_GetLineNumber(PyFrameObject *f) in PyFrame_GetLineNumber()
73 frame_getlineno(PyFrameObject *f, void *closure) in frame_getlineno()
94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno) in frame_setlineno()
350 frame_gettrace(PyFrameObject *f, void *closure) in frame_gettrace()
363 frame_settrace(PyFrameObject *f, PyObject* v, void *closure) in frame_settrace()
379 frame_getrestricted(PyFrameObject *f, void *closure) in frame_getrestricted()
[all …]
Dgenobject.c48 PyFrameObject *f = gen->gi_frame; in gen_send_ex()
380 PyGen_New(PyFrameObject *f) in PyGen_New()
400 PyFrameObject *f = gen->gi_frame; in PyGen_NeedsFinalizing()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Dceval.c129 static int call_trace(Py_tracefunc, PyObject *, PyFrameObject *,
132 PyFrameObject *, int, PyObject *);
133 static void call_exc_trace(Py_tracefunc, PyObject *, PyFrameObject *);
135 PyFrameObject *, int *, int *, int *);
144 static int exec_statement(PyFrameObject *,
150 PyFrameObject *, unsigned char *);
681 PyEval_EvalFrame(PyFrameObject *f) { in PyEval_EvalFrame()
689 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) in PyEval_EvalFrameEx()
3034 register PyFrameObject *f; in PyEval_EvalCodeEx()
3385 PyFrameObject *frame = tstate->frame; in set_exc_info()
[all …]
Dtraceback.c84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame) in newtracebackobject()
106 PyTraceBack_Here(PyFrameObject *frame) in PyTraceBack_Here()
Dsysmodule.c305 PyFrameObject *frame, int what, PyObject *arg) in call_trampoline()
336 profile_trampoline(PyObject *self, PyFrameObject *frame, in profile_trampoline()
354 trace_trampoline(PyObject *self, PyFrameObject *frame, in trace_trampoline()
815 PyFrameObject *f = PyThreadState_GET()->frame; in sys_getframe()
D_warnings.c449 PyFrameObject *f = PyThreadState_GET()->frame; in setup_context()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Dceval.c127 static int call_trace(Py_tracefunc, PyObject *, PyFrameObject *,
130 PyFrameObject *, int, PyObject *);
131 static void call_exc_trace(Py_tracefunc, PyObject *, PyFrameObject *);
133 PyFrameObject *, int *, int *, int *);
142 static int exec_statement(PyFrameObject *,
148 PyFrameObject *, unsigned char *);
679 PyEval_EvalFrame(PyFrameObject *f) { in PyEval_EvalFrame()
687 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag) in PyEval_EvalFrameEx()
3019 register PyFrameObject *f; in PyEval_EvalCodeEx()
3371 PyFrameObject *frame = tstate->frame; in set_exc_info()
[all …]
Dtraceback.c84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame) in newtracebackobject()
106 PyTraceBack_Here(PyFrameObject *frame) in PyTraceBack_Here()
Dsysmodule.c305 PyFrameObject *frame, int what, PyObject *arg) in call_trampoline()
336 profile_trampoline(PyObject *self, PyFrameObject *frame, in profile_trampoline()
354 trace_trampoline(PyObject *self, PyFrameObject *frame, in trace_trampoline()
797 PyFrameObject *f = PyThreadState_GET()->frame; in sys_getframe()
D_warnings.c449 PyFrameObject *f = PyThreadState_GET()->frame; in setup_context()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
Dpyexpat.c273 trace_frame(PyThreadState *tstate, PyFrameObject *f, int code, PyObject *val) in trace_frame()
300 trace_frame_exc(PyThreadState *tstate, PyFrameObject *f) in trace_frame_exc()
340 PyFrameObject *f; in call_with_frame()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dpyexpat.c273 trace_frame(PyThreadState *tstate, PyFrameObject *f, int code, PyObject *val) in trace_frame()
300 trace_frame_exc(PyThreadState *tstate, PyFrameObject *f) in trace_frame_exc()
340 PyFrameObject *f; in call_with_frame()
D_lsprof.c436 profiler_callback(PyObject *self, PyFrameObject *frame, int what, in profiler_callback()
D_hotshot.c859 tracer_callback(ProfilerObject *self, PyFrameObject *frame, int what, in tracer_callback()