Lines Matching full:system
71 // Redirect the stack trace string to the System's in stream, and the
73 InputStream oldIn = System.in;
74 PrintStream oldOut = System.out;
75 PrintStream oldErr = System.err;
83 System.setIn(inputStream);
84 System.setOut(printStream);
85 System.setErr(printStream);
100 System.out.println(ex.getMessage());
111 System.gc();
114 System.out.println(msg("outOfMemory"));
126 // Restore the old System's in, out, and err streams.
127 System.setIn(oldIn);
128 System.setOut(oldOut);
129 System.setErr(oldErr);