Home | History | Annotate | Download | only in android

Lines Matching defs:option

39 /* Contains arguments for -android-ports option. */
41 /* Contains arguments for -android-port option. */
43 /* Contains arguments for -android-report-console option. */
45 /* Contains arguments for -http-proxy option. */
85 derror( "socket port/path can be followed by [,<option>]+ only\n");
252 fprintf( stderr, "option -adb-port is obsolete, use -port instead\n" );
270 derror( "option -ports must be followed by two comma separated positive integer numbers" );
277 derror( "option -ports must be followed by two comma separated positive integer numbers" );
282 derror( "option -ports must be followed by two different integer numbers" );
307 derror( "option -port must be followed by an even integer number between %d and %d\n",
313 dwarning( "option -port must be followed by an even integer, using port number %d\n",
402 ProxyOption* option = option_tab;
430 option->type = PROXY_OPTION_AUTH_USERNAME;
431 option->string = env;
432 option->string_len = q - env;
433 option++;
435 option->type = PROXY_OPTION_AUTH_PASSWORD;
436 option->string = q+1;
437 option->string_len = p - (q+1);
438 option++;
465 option - option_tab, option_tab ) < 0 )