Home | History | Annotate | Download | only in ss

Lines Matching full:argv

26 					  char *argv[], int sci_idx));
28 char **argv[]));
63 * check_request_table(rqtbl, argc, argv, sci_idx)
66 * If the command string in argv[0] is in the request table, execute
73 * number of elements in argv[]
74 * argv (char *[])
84 static int check_request_table (rqtbl, argc, argv, sci_idx)
87 char *argv[];
97 char *string = argv[0];
102 info->argv = argv;
107 (request->function)(argc, (const char *const *) argv,
117 * really_execute_command(sci_idx, argc, argv)
120 * Fills in the argc, argv values in the subsystem entry and
127 * argv (char **[])
137 static int really_execute_command (sci_idx, argc, argv)
140 char **argv[];
148 if (check_request_table (*rqtbl, argc, *argv, sci_idx) == 0)
155 * ss_execute_command(sci_idx, argv)
162 * argv (char *[])
170 int ss_execute_command(sci_idx, argv)
172 register char *argv[];
178 for (argp = argv; *argp; argp++)
182 argp[i] = argv[i];
208 char **argv;
226 argv = ss_parse(sci_idx, line_ptr, &argc);
228 free(argv);
233 ret = really_execute_command (sci_idx, argc, &argv);
235 free(argv);