Home | History | Annotate | Download | only in am

Lines Matching refs:pw

47     void dump(String prefix, PrintWriter pw) {
48 pw.print(prefix); pw.print("mState=");
50 case STATE_BOOTING: pw.print("BOOTING"); break;
51 case STATE_RUNNING: pw.print("RUNNING"); break;
52 case STATE_STOPPING: pw.print("STOPPING"); break;
53 case STATE_SHUTDOWN: pw.print("SHUTDOWN"); break;
54 default: pw.print(mState); break;
56 if (switching) pw.print(" SWITCHING");
57 if (initializing) pw.print(" INITIALIZING");
58 pw.println();