Lines Matching refs:arg_array
5745 char **arg_array = Jim_Alloc(sizeof(*arg_array) * (argc + 1));
5834 arg_array[arg_count++] = (char *)arg;
5847 Jim_Free(arg_array);
5962 if (strcmp(arg_array[lastArg], "|") == 0) {
5965 if (strcmp(arg_array[lastArg], "|&") == 0) {
5977 arg_array[lastArg] = NULL;
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) &&
6106 Jim_Free(arg_array);