Lines Matching defs:argv
3154 PyObject *argv;
3159 /* execv has two arguments: (path, argv), where
3160 argv is a list or tuple of strings. */
3164 &path, &argv))
3166 if (PyList_Check(argv)) {
3167 argc = PyList_Size(argv);
3170 else if (PyTuple_Check(argv)) {
3171 argc = PyTuple_Size(argv);
3191 if (!PyArg_Parse((*getitem)(argv, i), "et",
3226 PyObject *argv, *env;
3234 /* execve has three arguments: (path, argv, env), where
3235 argv is a list or tuple of strings and env is a dictionary
3240 &path, &argv, &env))
3242 if (PyList_Check(argv)) {
3243 argc = PyList_Size(argv);
3246 else if (PyTuple_Check(argv)) {
3247 argc = PyTuple_Size(argv);
3267 if (!PyArg_Parse((*getitem)(argv, i),
3371 PyObject *argv;
3378 /* spawnv has three arguments: (mode, path, argv), where
3379 argv is a list or tuple of strings. */
3383 &path, &argv))
3385 if (PyList_Check(argv)) {
3386 argc = PyList_Size(argv);
3389 else if (PyTuple_Check(argv)) {
3390 argc = PyTuple_Size(argv);
3406 if (!PyArg_Parse((*getitem)(argv, i), "et",
3459 PyObject *argv, *env;
3469 /* spawnve has four arguments: (mode, path, argv, env), where
3470 argv is a list or tuple of strings and env is a dictionary
3475 &path, &argv, &env))
3477 if (PyList_Check(argv)) {
3478 argc = PyList_Size(argv);
3481 else if (PyTuple_Check(argv)) {
3482 argc = PyTuple_Size(argv);
3502 if (!PyArg_Parse((*getitem)(argv, i),
3614 PyObject *argv;
3620 /* spawnvp has three arguments: (mode, path, argv), where
3621 argv is a list or tuple of strings. */
3625 &path, &argv))
3627 if (PyList_Check(argv)) {
3628 argc = PyList_Size(argv);
3631 else if (PyTuple_Check(argv)) {
3632 argc = PyTuple_Size(argv);
3648 if (!PyArg_Parse((*getitem)(argv, i), "et",
3693 PyObject *argv, *env;
3702 /* spawnvpe has four arguments: (mode, path, argv, env), where
3703 argv is a list or tuple of strings and env is a dictionary
3708 &path, &argv, &env))
3710 if (PyList_Check(argv)) {
3711 argc = PyList_Size(argv);
3714 else if (PyTuple_Check(argv)) {
3715 argc = PyTuple_Size(argv);
3735 if (!PyArg_Parse((*getitem)(argv, i),
5450 use its argv vector, and re-quote the necessary