Home | History | Annotate | Download | only in am

Lines Matching defs:opti

8581         int opti = 0;
8582 while (opti < args.length) {
8583 String opt = args[opti];
8587 opti++;
8623 if (opti < args.length) {
8624 String cmd = args[opti];
8625 opti++;
8628 dumpActivitiesLocked(fd, pw, args, opti, true, dumpClient, null);
8633 if (opti >= args.length) {
8637 name = args[opti];
8638 opti++;
8639 newArgs = new String[args.length - opti];
8640 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0,
8641 args.length - opti);
8644 dumpBroadcastsLocked(fd, pw, args, opti, true, name);
8649 if (opti >= args.length) {
8653 name = args[opti];
8654 opti++;
8655 newArgs = new String[args.length - opti];
8656 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0,
8657 args.length - opti);
8660 dumpPendingIntentsLocked(fd, pw, args, opti, true, name);
8665 if (opti >= args.length) {
8669 name = args[opti];
8670 opti++;
8671 newArgs = new String[args.length - opti];
8672 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0,
8673 args.length - opti);
8676 dumpProcessesLocked(fd, pw, args, opti, true, name);
8680 dumpOomLocked(fd, pw, args, opti, true);
8685 if (opti >= args.length) {
8689 name = args[opti];
8690 opti++;
8691 newArgs = new String[args.length - opti];
8692 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0, args.length - opti);
8700 dumpProvidersLocked(fd, pw, args, opti, true, null);
8705 if (opti >= args.length) {
8709 name = args[opti];
8710 opti++;
8711 newArgs = new String[args.length - opti];
8712 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0,
8713 args.length - opti);
8721 if (opti >= args.length) {
8725 dumpPackage = args[opti];
8726 opti++;
8727 newArgs = new String[args.length - opti];
8728 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0,
8729 args.length - opti);
8731 opti = 0;
8736 dumpServicesLocked(fd, pw, args, opti, true, dumpClient, null);
8740 if (!dumpActivity(fd, pw, cmd, args, opti, dumpAll)) {
8754 needSep = dumpPendingIntentsLocked(fd, pw, args, opti, dumpAll, dumpPackage);
8761 needSep = dumpBroadcastsLocked(fd, pw, args, opti, dumpAll, dumpPackage);
8768 needSep = dumpProvidersLocked(fd, pw, args, opti, dumpAll, dumpPackage);
8775 needSep = dumpServicesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
8782 needSep = dumpActivitiesLocked(fd, pw, args, opti, dumpAll, dumpClient, dumpPackage);
8789 dumpProcessesLocked(fd, pw, args, opti, dumpAll, dumpPackage);
8795 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
8872 int opti, boolean dumpAll, String dumpPackage) {
8990 needSep = dumpProcessesToGc(fd, pw, args, opti, needSep, dumpAll, dumpPackage);
9134 int opti, boolean needSep, boolean dumpAll, String dumpPackage) {
9163 int opti, boolean dumpAll) {
9192 needSep = dumpProcessesToGc(fd, pw, args, opti, needSep, dumpAll, null);
9213 int opti, boolean dumpAll) {
9327 int opti, boolean dumpAll) {
9328 return mProviderMap.dumpProvider(fd, pw, name, args, opti, dumpAll);
9370 int build(String[] args, int opti) {
9371 for (; opti<args.length; opti++) {
9372 String name = args[opti];
9374 return opti+1;
9378 return opti;
9419 int opti, boolean dumpAll) {
9452 String[] newArgs = new String[args.length - opti];
9453 if (args.length > 2) System.arraycopy(args, opti, newArgs, 0, args.length - opti);
9517 int opti, boolean dumpAll, String dumpPackage) {
9549 needSep = q.dumpLocked(fd, pw, args, opti, dumpAll, dumpPackage, needSep);
9604 int opti, boolean dumpAll, boolean dumpClient, String dumpPackage) {
9608 matcher.build(args, opti);
9794 int opti, boolean dumpAll, String dumpPackage) {
9798 matcher.build(args, opti);
9846 int opti, boolean dumpAll, String dumpPackage) {
10332 int opti = 0;
10333 while (opti < args.length) {
10334 String opt = args[opti];
10338 opti++;
10355 ArrayList<ProcessRecord> procs = collectProcesses(pw, opti, args);
10377 String[] innerArgs = new String[args.length-opti];
10378 System.arraycopy(args, opti, innerArgs, 0, args.length-opti);