Lines Matching defs:argc
651 int i, argc = *p_argc;
663 new_argv = malloc(sizeof(char *) * (argc + space_count + 3 + envlen));
668 str_start = str = (char *) (new_argv + argc + space_count + 3);
709 memcpy(new_argv + i, orig_argv + 1, sizeof(char *) * (argc - 1));
710 new_argv[i + argc] = NULL;
711 *p_argc = i + argc - 1;
716 static int do_modprobe(int argc, char **orig_argv)
732 argv = prepend_options_from_env(&argc, orig_argv);
740 c = getopt_long(argc, argv, cmdopts_s, cmdopts, &idx);
844 nargs = argc - optind;