Home | History | Annotate | Download | only in ss

Lines Matching refs:argv

21 					  char *argv[], int sci_idx));
23 char **argv[]));
58 * check_request_table(rqtbl, argc, argv, sci_idx)
61 * If the command string in argv[0] is in the request table, execute
68 * number of elements in argv[]
69 * argv (char *[])
79 static int check_request_table (rqtbl, argc, argv, sci_idx)
82 char *argv[];
92 char *string = argv[0];
97 info->argv = argv;
102 (request->function)(argc, (const char *const *) argv,
112 * really_execute_command(sci_idx, argc, argv)
115 * Fills in the argc, argv values in the subsystem entry and
122 * argv (char **[])
132 static int really_execute_command (sci_idx, argc, argv)
135 char **argv[];
143 if (check_request_table (*rqtbl, argc, *argv, sci_idx) == 0)
150 * ss_execute_command(sci_idx, argv)
157 * argv (char *[])
165 int ss_execute_command(sci_idx, argv)
167 register char *argv[];
173 for (argp = argv; *argp; argp++)
177 argp[i] = argv[i];
203 char **argv;
222 argv = ss_parse(sci_idx, line_ptr, &argc);
224 if (argv)
225 free(argv);
230 ret = really_execute_command (sci_idx, argc, &argv);
232 free(argv);