Home
last modified time | relevance | path

Searched refs:runargs (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
Dmain.c167 PyObject *runpy, *runmodule, *runargs, *result; in RunModule() local
179 runargs = Py_BuildValue("(si)", module, set_argv0); in RunModule()
180 if (runargs == NULL) { in RunModule()
187 result = PyObject_Call(runmodule, runargs, NULL); in RunModule()
193 Py_DECREF(runargs); in RunModule()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Modules/
Dmain.c167 PyObject *runpy, *runmodule, *runargs, *result; in RunModule() local
179 runargs = Py_BuildValue("(si)", module, set_argv0); in RunModule()
180 if (runargs == NULL) { in RunModule()
187 result = PyObject_Call(runmodule, runargs, NULL); in RunModule()
193 Py_DECREF(runargs); in RunModule()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dmain.c162 PyObject *runpy, *runmodule, *runargs, *result; in RunModule() local
174 runargs = Py_BuildValue("(si)", module, set_argv0); in RunModule()
175 if (runargs == NULL) { in RunModule()
182 result = PyObject_Call(runmodule, runargs, NULL); in RunModule()
188 Py_DECREF(runargs); in RunModule()
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlua.c395 static int runargs (lua_State *L, char **argv, int n) { in runargs() function
463 if (!runargs(L, argv, (script > 0) ? script : argc)) return 0; in pmain()