Lines Matching refs:arg

293      *   <li> --runtime-init indicates that the remaining arg list should
354 * Any args after and including the first non-option arg
381 String arg = args[curArg];
383 if (arg.equals("--")) {
386 } else if (arg.startsWith("--setuid=")) {
389 "Duplicate arg specified");
393 arg.substring(arg.indexOf('=') + 1));
394 } else if (arg.startsWith("--setgid=")) {
397 "Duplicate arg specified");
401 arg.substring(arg.indexOf('=') + 1));
402 } else if (arg.startsWith("--target-sdk-version=")) {
409 arg.substring(arg.indexOf('=') + 1));
410 } else if (arg.equals("--enable-debugger")) {
412 } else if (arg.equals("--enable-safemode")) {
414 } else if (arg.equals("--enable-checkjni")) {
416 } else if (arg.equals("--enable-jni-logging")) {
418 } else if (arg.equals("--enable-assert")) {
420 } else if (arg.equals("--runtime-init")) {
422 } else if (arg.startsWith("--seinfo=")) {
425 "Duplicate arg specified");
428 seInfo = arg.substring(arg.indexOf('=') + 1);
429 } else if (arg.startsWith("--capabilities=")) {
432 "Duplicate arg specified");
435 String capString = arg.substring(arg.indexOf('=')+1);
446 } else if (arg.startsWith("--rlimit=")) {
449 = arg.substring(arg.indexOf('=')+1).split(",");
466 } else if (arg.equals("-classpath")) {
469 "Duplicate arg specified");
477 } else if (arg.startsWith("--setgroups=")) {
480 "Duplicate arg specified");
484 = arg.substring(arg.indexOf('=') + 1).split(",");
491 } else if (arg.equals("--invoke-with")) {
494 "Duplicate arg specified");
502 } else if (arg.startsWith("--nice-name=")) {
505 "Duplicate arg specified");
507 niceName = arg.substring(arg.indexOf('=') + 1);
508 } else if (arg.equals("--mount-external-multiuser")) {
510 } else if (arg.equals("--mount-external-multiuser-all")) {
564 throw new IOException("max arg count exceeded");