Searched refs:interp (Results 1 - 25 of 27) sorted by relevance

12

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
H A Dpystate.c31 static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */
60 PyInterpreterState *interp = (PyInterpreterState *) local
63 if (interp != NULL) {
69 interp->modules = NULL;
70 interp->modules_reloading = NULL;
71 interp->sysdict = NULL;
72 interp->builtins = NULL;
73 interp->tstate_head = NULL;
74 interp->codec_search_path = NULL;
75 interp
99 PyInterpreterState_Clear(PyInterpreterState *interp) argument
117 zapthreads(PyInterpreterState *interp) argument
129 PyInterpreterState_Delete(PyInterpreterState *interp) argument
157 new_threadstate(PyInterpreterState *interp, int init) argument
211 PyThreadState_New(PyInterpreterState *interp) argument
217 _PyThreadState_Prealloc(PyInterpreterState *interp) argument
261 PyInterpreterState *interp; local
394 PyInterpreterState *interp = tstate->interp; local
436 PyInterpreterState_Next(PyInterpreterState *interp) argument
441 PyInterpreterState_ThreadHead(PyInterpreterState *interp) argument
[all...]
H A Dcodecs.c31 PyInterpreterState *interp = PyThreadState_GET()->interp; local
32 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
42 return PyList_Append(interp->codec_search_path, search_function);
96 PyInterpreterState *interp; local
105 interp = PyThreadState_GET()->interp;
106 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
118 result = PyDict_GetItem(interp->codec_search_cache, v);
131 len = PyList_Size(interp
410 PyInterpreterState *interp = PyThreadState_GET()->interp; local
428 PyInterpreterState *interp = PyThreadState_GET()->interp; local
845 PyInterpreterState *interp = PyThreadState_GET()->interp; local
[all...]
H A Dpythonrun.c143 PyInterpreterState *interp; local
182 interp = PyInterpreterState_New();
183 if (interp == NULL)
186 tstate = PyThreadState_New(interp);
207 interp->modules = PyDict_New();
208 if (interp->modules == NULL)
210 interp->modules_reloading = PyDict_New();
211 if (interp->modules_reloading == NULL)
222 interp->builtins = PyModule_GetDict(bimod);
223 if (interp
407 PyInterpreterState *interp; local
579 PyInterpreterState *interp; local
655 PyInterpreterState *interp = tstate->interp; local
[all...]
H A Dsysmodule.c53 PyObject *sd = tstate->interp->sysdict;
75 PyObject *sd = tstate->interp->sysdict;
90 PyInterpreterState *interp = PyThreadState_GET()->interp; local
91 PyObject *modules = interp->modules;
500 tstate->interp->tscdump = 1;
502 tstate->interp->tscdump = 0;
637 tstate->interp->dlopenflags = new_val;
660 return PyInt_FromLong(tstate->interp->dlopenflags);
H A Dmodsupport.c37 PyInterpreterState *interp = PyThreadState_Get()->interp; local
38 if (interp->modules == NULL)
H A Dimport.c389 PyInterpreterState *interp = PyThreadState_Get()->interp; local
390 if (interp->modules_reloading != NULL)
391 PyDict_Clear(interp->modules_reloading);
399 PyInterpreterState *interp = PyThreadState_GET()->interp; local
400 if (interp->modules == NULL)
402 return interp->modules;
433 PyInterpreterState *interp = PyThreadState_GET()->interp; local
2725 PyInterpreterState *interp = PyThreadState_Get()->interp; local
[all...]
H A D_warnings.c454 globals = PyThreadState_Get()->interp->sysdict;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
H A Dpystate.c28 static PyThread_type_lock head_mutex = NULL; /* Protects interp->tstate_head */
61 PyInterpreterState *interp = (PyInterpreterState *) local
64 if (interp != NULL) {
70 interp->modules = NULL;
71 interp->modules_reloading = NULL;
72 interp->sysdict = NULL;
73 interp->builtins = NULL;
74 interp->tstate_head = NULL;
75 interp->codec_search_path = NULL;
76 interp
100 PyInterpreterState_Clear(PyInterpreterState *interp) argument
118 zapthreads(PyInterpreterState *interp) argument
130 PyInterpreterState_Delete(PyInterpreterState *interp) argument
158 new_threadstate(PyInterpreterState *interp, int init) argument
209 PyThreadState_New(PyInterpreterState *interp) argument
215 _PyThreadState_Prealloc(PyInterpreterState *interp) argument
259 PyInterpreterState *interp; local
392 PyInterpreterState *interp = tstate->interp; local
434 PyInterpreterState_Next(PyInterpreterState *interp) argument
439 PyInterpreterState_ThreadHead(PyInterpreterState *interp) argument
[all...]
H A Dcodecs.c31 PyInterpreterState *interp = PyThreadState_GET()->interp; local
32 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
42 return PyList_Append(interp->codec_search_path, search_function);
96 PyInterpreterState *interp; local
105 interp = PyThreadState_GET()->interp;
106 if (interp->codec_search_path == NULL && _PyCodecRegistry_Init())
118 result = PyDict_GetItem(interp->codec_search_cache, v);
131 len = PyList_Size(interp
410 PyInterpreterState *interp = PyThreadState_GET()->interp; local
428 PyInterpreterState *interp = PyThreadState_GET()->interp; local
828 PyInterpreterState *interp = PyThreadState_GET()->interp; local
[all...]
H A Dpythonrun.c137 PyInterpreterState *interp; local
170 interp = PyInterpreterState_New();
171 if (interp == NULL)
174 tstate = PyThreadState_New(interp);
195 interp->modules = PyDict_New();
196 if (interp->modules == NULL)
198 interp->modules_reloading = PyDict_New();
199 if (interp->modules_reloading == NULL)
210 interp->builtins = PyModule_GetDict(bimod);
211 if (interp
395 PyInterpreterState *interp; local
566 PyInterpreterState *interp; local
642 PyInterpreterState *interp = tstate->interp; local
[all...]
H A Ddynload_shlib.c112 dlopenflags = PyThreadState_GET()->interp->dlopenflags;
H A Dsysmodule.c53 PyObject *sd = tstate->interp->sysdict;
75 PyObject *sd = tstate->interp->sysdict;
90 PyInterpreterState *interp = PyThreadState_GET()->interp; local
91 PyObject *modules = interp->modules;
500 tstate->interp->tscdump = 1;
502 tstate->interp->tscdump = 0;
633 tstate->interp->dlopenflags = new_val;
656 return PyInt_FromLong(tstate->interp->dlopenflags);
H A Dmodsupport.c37 PyInterpreterState *interp = PyThreadState_Get()->interp; local
38 if (interp->modules == NULL)
H A Dimport.c357 PyInterpreterState *interp = PyThreadState_Get()->interp; local
358 if (interp->modules_reloading != NULL)
359 PyDict_Clear(interp->modules_reloading);
367 PyInterpreterState *interp = PyThreadState_GET()->interp; local
368 if (interp->modules == NULL)
370 return interp->modules;
401 PyInterpreterState *interp = PyThreadState_GET()->interp; local
2618 PyInterpreterState *interp = PyThreadState_Get()->interp; local
[all...]
H A D_warnings.c454 globals = PyThreadState_Get()->interp->sysdict;
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
H A Dtest_tcl.py24 self.interp = Tcl()
27 tcl = self.interp
32 tcl = self.interp
36 tcl = self.interp
40 tcl = self.interp
45 tcl = self.interp
49 tcl = self.interp
53 tcl = self.interp
58 tcl = self.interp
63 tcl = self.interp
[all...]
/device/linaro/bootloader/edk2/ArmVirtPkg/PrePi/Scripts/
H A DPrePi-PIE.lds40 *(.interp)
/device/linaro/bootloader/edk2/BaseTools/Scripts/
H A DGccBase.lds74 *(.interp)
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
H A DCGIHTTPServer.py261 interp = sys.executable
262 if interp.lower().endswith("w.exe"):
264 interp = interp[:-5] + interp[-4:]
265 cmdline = [interp, '-u'] + cmdline
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
H A Dframeobject.h59 ((f)->f_builtins != (f)->f_tstate->interp->builtins)
H A Dpystate.h60 PyInterpreterState *interp; member in struct:_ts
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
H A Dframeobject.h59 ((f)->f_builtins != (f)->f_tstate->interp->builtins)
H A Dpystate.h60 PyInterpreterState *interp; member in struct:_ts
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dthreadmodule.c400 && tstate->interp) {
401 for(tstate = PyInterpreterState_ThreadHead(tstate->interp);
595 PyInterpreterState *interp; member in struct:bootstate
672 boot->interp = PyThreadState_GET()->interp;
676 boot->tstate = _PyThreadState_Prealloc(boot->interp);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Python/
H A Dimport.c357 PyInterpreterState *interp = PyThreadState_Get()->interp; local
358 if (interp->modules_reloading != NULL)
359 PyDict_Clear(interp->modules_reloading);
367 PyInterpreterState *interp = PyThreadState_GET()->interp; local
368 if (interp->modules == NULL)
370 return interp->modules;
401 PyInterpreterState *interp = PyThreadState_GET()->interp; local
2618 PyInterpreterState *interp = PyThreadState_Get()->interp; local
[all...]

Completed in 231 milliseconds

12