Lines Matching defs:firstArg
5733 int firstArg, lastArg; /* Indexes of first and last arguments in
5957 for (firstArg = 0; firstArg < arg_count; numPids++, firstArg = lastArg + 1) {
5961 for (lastArg = firstArg; lastArg < arg_count; lastArg++) {
5971 if (lastArg == firstArg) {
5998 phandle = JimStartWinProcess(interp, &arg_array[firstArg], save_environ, inputId, outputId, errorId);
6000 Jim_SetResultFormatted(interp, "couldn't exec \"%s\"", arg_array[firstArg]);
6004 i = strlen(arg_array[firstArg]);
6049 execvpe(arg_array[firstArg], &arg_array[firstArg], child_environ);
6052 write(fileno(stderr), arg_array[firstArg], i) &&