Home | History | Annotate | Download | only in commands

Lines Matching full:argv

33  * @v argv		Argument list
35 static void gdbstub_syntax ( char **argv ) {
42 argv[0] );
49 * @v argv Argument list
52 static int gdbstub_exec ( int argc, char **argv ) {
62 while ( ( c = getopt_long ( argc, argv, "h", longopts, NULL ) ) >= 0 ){
68 gdbstub_syntax ( argv );
75 gdbstub_syntax ( argv );
79 trans_name = argv[optind++];
89 if ( trans->init ( argc - optind, &argv[optind] ) != 0 ) {