Searched defs:checkError (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/test/sun/management/jmxremote/
H A DLocalRMIServerSocketFactoryTest.java56 private static void checkError(String message) throws Exception { method in class:LocalRMIServerSocketFactoryTest
122 checkError("new Socket((String)null, port)");
128 checkError("new Socket(InetAddress.getByName(null), port)");
134 checkError("new Socket(localhost, port)");
140 checkError("new Socket(127.0.0.1, port)");
/openjdk7/jdk/test/sun/net/www/http/ChunkedOutputStream/
H A DcheckError.java27 * @run main/othervm/timeout=300 checkError
36 public class checkError { class
158 synchronized(checkError.threadStarting) {
164 checkError.testStatus = checkError.TEST_FAILED;
167 checkError.threadStarting.notify();
174 checkError.testStatus = checkError.TEST_FAILED;
187 synchronized(checkError.threadWaiting) {
195 checkError
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/http/
H A DChunkedOutputStream.java178 public boolean checkError() { method in class:ChunkedOutputStream
179 return out.checkError();
238 if (checkError()){
/openjdk7/jdk/src/share/classes/java/io/
H A DPrintStream.java40 * internal flag that can be tested via the <code>checkError</code> method.
390 public boolean checkError() { method in class:PrintStream
395 return ps.checkError();
404 * #checkError()} to return <tt>true</tt> until {@link
417 * #checkError()} to return <tt>false</tt> until another write
H A DPrintWriter.java49 * occurred by invoking {@link #checkError checkError()}.
314 * @see #checkError()
332 * @see #checkError()
355 public boolean checkError() { method in class:PrintWriter
361 return pw.checkError();
363 return psOut.checkError();
372 * #checkError()} to return <tt>true</tt> until {@link
383 * #checkError()} to return <tt>false</tt> until another write
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DSchemaWriter.java110 public boolean checkError() { method in class:SchemaWriter
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/http/
H A DHttpURLConnection.java620 if (ps.checkError()) {
3160 checkError();
3175 checkError();
3184 void checkError () throws IOException { method in class:HttpURLConnection.StreamingOutputStream
3191 if (((PrintStream)out).checkError()) {

Completed in 48 milliseconds