Home | History | Annotate | Download | only in commands

Lines Matching full:argv

44  * @v argv		Argument list
46 static void dhcp_syntax ( char **argv ) {
51 argv[0] );
58 * @v argv Argument list
61 static int dhcp_exec ( int argc, char **argv ) {
72 while ( ( c = getopt_long ( argc, argv, "h", longopts, NULL ) ) >= 0 ){
78 dhcp_syntax ( argv );
85 dhcp_syntax ( argv );
88 netdev_txt = argv[optind];
110 * @v argv Argument list
112 static void pxebs_syntax ( char **argv ) {
117 argv[0] );
124 * @v argv Argument list
127 static int pxebs_exec ( int argc, char **argv ) {
141 while ( ( c = getopt_long ( argc, argv, "h", longopts, NULL ) ) >= 0 ){
147 pxebs_syntax ( argv );
152 pxebs_syntax ( argv );
155 netdev_txt = argv[optind];
156 pxe_type_txt = argv[ optind + 1 ];