/openjdk7/jdk/test/com/sun/jdi/ |
H A D | DataModelTest.java | 52 public void ready () { method in class:DataModelTarg 58 my.ready(); 77 * Get to the top of ready() 79 BreakpointEvent bpe = startTo("DataModelTarg", "ready", "()V");
|
H A D | DebuggerThreadTest.java | 44 public void ready() { method in class:DebuggerThreadTarg 49 targ.ready(); 100 * Get to the top of ready() 102 startTo("DebuggerThreadTarg", "ready", "()V");
|
H A D | BadHandshakeTest.java | 50 static volatile boolean ready = false; field in class:BadHandshakeTest 76 // which shows the debuggee is ready to accept connections. 77 ready = true; 153 // wait for the debugge to be ready 154 while (!ready) {
|
H A D | RunToExit.java | 49 static volatile boolean ready = false; field in class:RunToExit 78 // which shows the debuggee is ready to accept connections. 79 ready = true; 158 // wait for the debugge to be ready 159 while (!ready) {
|
/openjdk7/jdk/src/share/classes/java/io/ |
H A D | FilterReader.java | 87 * Tells whether this stream is ready to be read. 91 public boolean ready() throws IOException { method in class:FilterReader 92 return in.ready();
|
H A D | InputStreamReader.java | 188 * Tells whether this stream is ready to be read. An InputStreamReader is 189 * ready if its input buffer is not empty, or if bytes are available to be 194 public boolean ready() throws IOException { method in class:InputStreamReader 195 return sd.ready();
|
H A D | Reader.java | 195 * Tells whether this stream is ready to be read. 203 public boolean ready() throws IOException { method in class:Reader 254 * it. Once the stream has been closed, further read(), ready(),
|
H A D | StringReader.java | 136 * Tells whether this stream is ready to be read. 142 public boolean ready() throws IOException { method in class:StringReader 195 * ready(), mark(), or reset() invocations will throw an IOException.
|
H A D | CharArrayReader.java | 172 * Tells whether this stream is ready to be read. Character-array readers 173 * are always ready to be read. 177 public boolean ready() throws IOException { method in class:CharArrayReader 225 * it. Once the stream has been closed, further read(), ready(),
|
H A D | PipedReader.java | 330 * Tell whether this stream is ready to be read. A piped character 331 * stream is ready if the circular buffer is not empty. 337 public synchronized boolean ready() throws IOException { method in class:PipedReader
|
H A D | PushbackReader.java | 200 * Tells whether this stream is ready to be read. 204 public boolean ready() throws IOException { method in class:PushbackReader 207 return (pos < buf.length) || super.ready(); 242 * unread(), ready(), or skip() invocations will throw an IOException.
|
H A D | BufferedReader.java | 240 * <li> The <code>ready</code> method of the underlying stream 281 while ((n < len) && in.ready()) { 429 * Tells whether this stream is ready to be read. A buffered character 430 * stream is ready if the buffer is not empty, or if the underlying 431 * character stream is ready. 435 public boolean ready() throws IOException { method in class:BufferedReader 444 /* Note that in.ready() will return true if and only if the next 447 if (nextChar >= nChars && in.ready()) { 456 return (nextChar < nChars) || in.ready();
|
H A D | Console.java | 414 public boolean ready() throws IOException { method in class:Console.LineReader 415 //in.ready synchronizes on readLock already 416 return in.ready(); 482 if (nextChar == nChars && in.ready()) {
|
/openjdk7/jdk/src/solaris/native/sun/nio/ch/ |
H A D | SocketChannelImpl.c | 51 jboolean ready) 60 if (!ready) { 49 Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this, jobject fdo, jboolean block, jboolean ready) argument
|
/openjdk7/jdk/test/java/io/BufferedReader/ |
H A D | Fill.java | 39 * A simple Reader that is always ready but may read fewer than the 58 public boolean ready() { method in class:Fill.Source
|
H A D | Ready.java | 26 * @summary Ensure that BufferedReader's ready() method handles the new line 28 * value so that a read operation after a ready() does not block unnecessarily. 54 while (reader.ready()) { 97 public boolean ready() { method in class:Ready.BoundedReader
|
/openjdk7/jdk/src/windows/native/sun/nio/ch/ |
H A D | SocketChannelImpl.c | 59 jboolean ready) 57 Java_sun_nio_ch_SocketChannelImpl_checkConnect(JNIEnv *env, jobject this, jobject fdo, jboolean block, jboolean ready) argument
|
/openjdk7/jdk/test/java/nio/channels/SocketChannel/ |
H A D | AsyncCloseChannel.java | 179 volatile boolean ready = false; field in class:AsyncCloseChannel.TargetClient 187 ready = false; 197 ready = true; 207 while(!ready && keepGoing) {
|
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/io/ |
H A D | ASCIIReader.java | 180 * Tell whether this stream is ready to be read. 188 public boolean ready() throws IOException { method in class:ASCIIReader 190 } // ready() 235 * ready(), mark(), or reset() invocations will throw an IOException.
|
H A D | UCSReader.java | 244 * Tell whether this stream is ready to be read. 252 public boolean ready() throws IOException { method in class:UCSReader 254 } // ready() 299 * ready(), mark(), or reset() invocations will throw an IOException.
|
H A D | UTF8Reader.java | 599 * Tell whether this stream is ready to be read. 607 public boolean ready() throws IOException { method in class:UTF8Reader 609 } // ready() 655 * ready(), mark(), or reset() invocations will throw an IOException.
|
/openjdk7/hotspot/src/share/tools/LogCompilation/src/com/sun/hotspot/tools/compiler/ |
H A D | LogCleanupReader.java | 189 public boolean ready() throws java.io.IOException { method in class:LogCleanupReader 190 return reader.ready() || (line != null && length > 0);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/dtdparser/ |
H A D | XmlReader.java | 498 * Returns true iff input characters are known to be ready. 500 public boolean ready() throws IOException { method in class:XmlReader 501 return in == null ? false : in.ready(); 535 public boolean ready() throws IOException { method in class:XmlReader.BaseReader
|
/openjdk7/jdk/test/java/lang/management/ThreadMXBean/ |
H A D | Locks.java | 154 private static Object ready = new Object(); field in class:Locks 173 System.out.println("WaitingThread about to block on ready"); 175 // object ready. 177 synchronized(ready) {}; 197 synchronized (ready) { 213 // synchronized object ready. 216 // object ready. 218 checkBlockedObject(waiter, ready, this, Thread.State.BLOCKED);
|
/openjdk7/jdk/src/share/classes/sun/nio/cs/ |
H A D | StreamDecoder.java | 181 public boolean ready() throws IOException { method in class:StreamDecoder
|