HomeSort by relevance Sort by last modified time
    Searched refs:PyFrameObject (Results 1 - 25 of 55) sorted by null

1 2 3

  /external/python/cpython3/Include/
frameobject.h 53 } PyFrameObject;
62 PyAPI_FUNC(PyFrameObject *) PyFrame_New(PyThreadState *, PyCodeObject *,
70 PyAPI_FUNC(void) PyFrame_BlockSetup(PyFrameObject *, int, int, int);
71 PyAPI_FUNC(PyTryBlock *) PyFrame_BlockPop(PyFrameObject *);
75 PyAPI_FUNC(PyObject **) PyFrame_ExtendStack(PyFrameObject *, int, int);
79 PyAPI_FUNC(void) PyFrame_LocalsToFast(PyFrameObject *, int);
81 PyAPI_FUNC(int) PyFrame_FastToLocalsWithError(PyFrameObject *f);
82 PyAPI_FUNC(void) PyFrame_FastToLocals(PyFrameObject *);
89 PyAPI_FUNC(int) PyFrame_GetLineNumber(PyFrameObject *);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
frameobject.h 50 } PyFrameObject;
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.2/Include/
frameobject.h 50 } PyFrameObject;
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 *);
  /external/python/cpython2/Include/
frameobject.h 50 } PyFrameObject;
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 *);
  /prebuilts/gdb/darwin-x86/include/python2.7/
frameobject.h 50 } PyFrameObject;
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 *);
  /prebuilts/gdb/linux-x86/include/python2.7/
frameobject.h 50 } PyFrameObject;
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 *);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
frameobject.h 50 } PyFrameObject;
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 *);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
frameobject.h 50 } PyFrameObject;
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 *);
  /external/python/cpython3/Objects/
frameobject.c 10 #define OFF(x) offsetof(PyFrameObject, x)
22 frame_getlocals(PyFrameObject *f, void *closure)
31 PyFrame_GetLineNumber(PyFrameObject *f)
40 frame_getlineno(PyFrameObject *f, void *closure)
61 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
329 frame_gettrace(PyFrameObject *f, void *closure)
342 frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
374 In zombie mode, no field of PyFrameObject holds a reference, but
407 static PyFrameObject *free_list = NULL;
413 frame_dealloc(PyFrameObject *f
    [all...]
genobject.c 125 PyFrameObject *f = gen->gi_frame;
352 PyFrameObject *f = gen->gi_frame;
800 gen_new_with_qualname(PyTypeObject *type, PyFrameObject *f,
829 PyGen_NewWithQualName(PyFrameObject *f, PyObject *name, PyObject *qualname)
835 PyGen_New(PyFrameObject *f)
844 PyFrameObject *f = gen->gi_frame;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
frameobject.c 15 #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)
64 PyFrame_GetLineNumber(PyFrameObject *f)
73 frame_getlineno(PyFrameObject *f, void *closure)
94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
352 frame_gettrace(PyFrameObject *f, void *closure)
365 frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
381 frame_getrestricted(PyFrameObject *f, void *closure)
    [all...]
genobject.c 48 PyFrameObject *f = gen->gi_frame;
383 PyGen_New(PyFrameObject *f)
403 PyFrameObject *f = gen->gi_frame;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
frameobject.c 15 #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)
64 PyFrame_GetLineNumber(PyFrameObject *f)
73 frame_getlineno(PyFrameObject *f, void *closure)
94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
350 frame_gettrace(PyFrameObject *f, void *closure)
363 frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
379 frame_getrestricted(PyFrameObject *f, void *closure)
    [all...]
genobject.c 48 PyFrameObject *f = gen->gi_frame;
380 PyGen_New(PyFrameObject *f)
400 PyFrameObject *f = gen->gi_frame;
  /external/python/cpython2/Objects/
frameobject.c 15 #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)
64 PyFrame_GetLineNumber(PyFrameObject *f)
73 frame_getlineno(PyFrameObject *f, void *closure)
94 frame_setlineno(PyFrameObject *f, PyObject* p_new_lineno)
352 frame_gettrace(PyFrameObject *f, void *closure)
365 frame_settrace(PyFrameObject *f, PyObject* v, void *closure)
379 frame_getrestricted(PyFrameObject *f, void *closure
    [all...]
genobject.c 48 PyFrameObject *f = gen->gi_frame;
383 PyGen_New(PyFrameObject *f)
403 PyFrameObject *f = gen->gi_frame;
  /external/python/cpython3/Python/
ceval.c 45 PyThreadState *, PyFrameObject *,
48 PyThreadState *, PyFrameObject *,
51 PyThreadState *, PyFrameObject *);
53 PyThreadState *, PyFrameObject *, int *, int *, int *);
54 static void maybe_dtrace_line(PyFrameObject *, int *, int *, int *);
55 static void dtrace_function_entry(PyFrameObject *);
56 static void dtrace_function_return(PyFrameObject *);
59 static PyObject * import_name(PyFrameObject *, PyObject *, PyObject *, PyObject *);
65 PyFrameObject *, const _Py_CODEUNIT *);
677 static void save_exc_state(PyThreadState *, PyFrameObject *);
    [all...]
traceback.c 111 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
133 PyTraceBack_Here(PyFrameObject *frame)
152 PyFrameObject *frame;
643 dump_frame(int fd, PyFrameObject *frame)
685 PyFrameObject *frame;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
traceback.c 84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
106 PyTraceBack_Here(PyFrameObject *frame)
ceval.c 129 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) {
689 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
    [all...]
sysmodule.c 305 PyFrameObject *frame, int what, PyObject *arg)
336 profile_trampoline(PyObject *self, PyFrameObject *frame,
354 trace_trampoline(PyObject *self, PyFrameObject *frame,
815 PyFrameObject *f = PyThreadState_GET()->frame;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
traceback.c 84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
106 PyTraceBack_Here(PyFrameObject *frame)
ceval.c 127 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) {
687 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
    [all...]
  /external/python/cpython2/Python/
traceback.c 84 newtracebackobject(PyTracebackObject *next, PyFrameObject *frame)
106 PyTraceBack_Here(PyFrameObject *frame)
ceval.c 129 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) {
689 PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
    [all...]

Completed in 725 milliseconds

1 2 3