Home | History | Annotate | Download | only in am

Lines Matching refs:pw

52     void dump(PrintWriter pw, String prefix) {
53 pw.print(prefix); pw.print("service="); pw.println(service);
54 dumpInService(pw, prefix);
57 void dumpInService(PrintWriter pw, String prefix) {
58 pw.print(prefix); pw.print("intent={");
59 pw.print(intent.getIntent().toShortString(false, true, false, false));
60 pw.println('}');
61 pw.print(prefix); pw.print("binder="); pw.println(binder);
62 pw.print(prefix); pw.print("requested="); pw.print(requested);
63 pw.print(" received="); pw.print(received);
64 pw.print(" hasBound="); pw.print(hasBound);
65 pw.print(" doRebind="); pw.println(doRebind);
68 pw.print(prefix); pw.print("* Client AppBindRecord{");
69 pw.print(Integer.toHexString(System.identityHashCode(a)));
70 pw.print(' '); pw.print(a.client); pw.println('}');
71 a.dumpInIntentBind(pw, prefix + " ");