Searched defs:ready (Results 1 - 25 of 30) sorted by relevance

12

/openjdk7/jdk/test/com/sun/jdi/
H A DDataModelTest.java52 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 DDebuggerThreadTest.java44 public void ready() { method in class:DebuggerThreadTarg
49 targ.ready();
100 * Get to the top of ready()
102 startTo("DebuggerThreadTarg", "ready", "()V");
H A DBadHandshakeTest.java50 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 DRunToExit.java49 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 DFilterReader.java87 * 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 DInputStreamReader.java188 * 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 DReader.java195 * 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 DStringReader.java136 * 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 DCharArrayReader.java172 * 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 DPipedReader.java330 * 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 DPushbackReader.java200 * 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 DBufferedReader.java240 * <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 DConsole.java414 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 DSocketChannelImpl.c51 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 DFill.java39 * A simple Reader that is always ready but may read fewer than the
58 public boolean ready() { method in class:Fill.Source
H A DReady.java26 * @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 DSocketChannelImpl.c59 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 DAsyncCloseChannel.java179 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 DASCIIReader.java180 * 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 DUCSReader.java244 * 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 DUTF8Reader.java599 * 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 DLogCleanupReader.java189 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 DXmlReader.java498 * 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 DLocks.java154 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 DStreamDecoder.java181 public boolean ready() throws IOException { method in class:StreamDecoder

Completed in 107 milliseconds

12