HomeSort by relevance Sort by last modified time
    Searched full:closed (Results 26 - 50 of 1153) sorted by null

12 3 4 5 6 7 8 91011>>

  /dalvik/libcore/luni/src/main/java/java/io/
ObjectInput.java 53 * if this stream is closed or another I/O error occurs.
66 * if this stream is closed or another I/O error occurs.
85 * if this stream is closed or another I/O error occurs.
97 * if this stream is closed or another I/O error occurs.
111 * if this stream is closed or another I/O error occurs.
StringReader.java 52 * Closes this reader. Once it is closed, read operations on this reader
62 * Returns a boolean indicating whether this reader is closed.
64 * @return {@code true} if closed, otherwise {@code false}.
80 * if this reader is closed.
117 * if this reader is closed.
151 * if this reader is closed.
160 // K0083=StringReader is closed.
191 * if this reader is closed.
212 * if this reader is closed.
241 * if this reader is closed
    [all...]
Writer.java 95 * if this writer is closed or another I/O error occurs.
118 * if this writer is closed or another I/O error occurs.
133 * if this writer is closed or another I/O error occurs.
149 * if this writer is closed or another I/O error occurs.
166 * if this writer is closed or another I/O error occurs.
191 * if this writer is closed or another I/O error occurs.
208 * if this writer is closed or another I/O error occurs.
236 * if this writer is closed or another I/O error occurs.
PipedWriter.java 71 * it is closed as well and the pipe is disconnected. Any data buffered in
93 * if this writer is closed or already connected, or if {@code
156 * if this writer is closed or not connected, if the target
157 * reader is closed or if the thread reading from the target
188 * if this writer is closed or not connected, if the target
189 * reader is closed or if the thread reading from the target
BufferedInputStream.java 124 * @throws IOException if this stream is closed or an error occurs
130 // K0059=Stream is closed
137 * Closes this stream. The source stream is closed and any resources
229 * if this stream is closed or another IOException occurs.
238 // K0059=Stream is closed
250 // K0059=Stream is closed
284 * if the stream is already closed or another IOException
294 // K0059=Stream is closed
315 // K0059=Stream is closed
353 // K0059=Stream is closed
    [all...]
  /external/apache-http/src/org/apache/http/impl/io/
IdentityInputStream.java 52 private boolean closed = false; field in class:IdentityInputStream
63 if (!this.closed && this.in.isDataAvailable(10)) {
71 this.closed = true;
75 if (this.closed) {
83 if (this.closed) {
ContentLengthInputStream.java 83 /** True if the stream is closed. */
84 private boolean closed = false; field in class:ContentLengthInputStream
118 if (!closed) {
125 // to read after closed!
126 closed = true;
139 if (closed) {
140 throw new IOException("Attempted read from closed stream.");
163 if (closed) {
164 throw new IOException("Attempted read from closed stream.");
ChunkedOutputStream.java 61 /** True if the stream is closed. */
62 private boolean closed = false; field in class:ChunkedOutputStream
141 if (this.closed) {
142 throw new IOException("Attempted write to closed stream.");
160 if (this.closed) {
161 throw new IOException("Attempted write to closed stream.");
185 if (!this.closed) {
186 this.closed = true;
  /dalvik/libcore/nio/src/main/java/java/nio/channels/
DatagramChannel.java 37 * status until it is disconnected or closed. The benefit of a connected channel
115 * closed.
124 * if the channel is already closed.
126 * if the channel is closed by another thread while this method
131 * interrupt state set and the channel will be closed.
147 * socket is not connected or the channel is closed.
178 * if the channel is already closed.
180 * if the channel is closed by another thread while this method
185 * interrupt state set and the channel will be closed.
219 * if the channel is already closed
    [all...]
FileChannel.java 154 * if this channel is already closed.
169 * the file channel is closed.
180 * the channel was closed while the calling thread was waiting
203 * the channel is closed.
211 * {@link FileLockInterruptionException}. If this channel is closed while
234 * if this channel is closed.
244 * if this channel is closed by another thread while this method
291 * if this channel is closed.
313 * if this channel is closed.
341 * if this channel is closed
    [all...]
SocketChannel.java 36 * connected until it gets closed. If the connection is non-blocking then
102 * if this channel is closed by another thread while this method
107 * interrupt state set and the channel will be closed.
186 * if this channel is closed.
188 * if this channel is closed by another thread while this method
193 * interrupt state set and this channel will be closed.
227 * if this channel is closed.
229 * if this channel is closed by another thread while this method
234 * interrupt state set, and this channel is closed.
263 * thread is set and the channel is closed
    [all...]
Selector.java 77 * @return {@code true} if this selector is not closed, {@code false}
107 * if the selector is closed.
123 * if the selector is closed.
138 * if the selector is closed.
152 * if the selector is closed.
167 * if the selector is closed.
  /packages/apps/Email/src/org/apache/commons/io/output/
DeferredFileOutputStream.java 31 * closed before the threshold is reached, the data will not be written to
90 private boolean closed = false; field in class:DeferredFileOutputStream
227 * Closes underlying output stream, and mark this as closed
234 closed = true;
240 * after it has been closed.
243 * @exception IOException if this stream is not yet closed or an error occurs.
247 // we may only need to check if this is closed if we are working with a file
250 if (!closed)
252 throw new IOException("Stream not closed");
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ShortcutCursor.java 32 // mShortcuts is used to close the underlying cursor when we're closed.
35 // they can be closed when ShortcutCursor is closed.
  /dalvik/tests/048-server-socket/src/
Main.java 39 System.out.println("closed!");
  /external/bluetooth/glib/gio/
gfileenumerator.c 53 * a #GFileEnumerator is closed, no further actions may be performed
63 guint closed : 1; member in struct:_GFileEnumeratorPrivate
134 if (!enumerator->priv->closed)
203 if (enumerator->priv->closed)
206 _("Enumerator is closed"));
266 if (enumerator->priv->closed)
282 enumerator->priv->closed = TRUE;
356 if (enumerator->priv->closed)
362 _("File enumerator is already closed"));
432 enumerator->priv->closed = TRUE
    [all...]
  /external/webkit/WebCore/manual-tests/
open-after-close.html 12 <p>This test checks for a regression against rdar://problem/3572585: window.open fails if name param = the name of a window just closed in same function.</p>
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 60 throw new IllegalStateException("calling hasNext() when the iterator is closed");
77 throw new IllegalStateException("calling next() when the iterator is closed");
96 throw new IllegalStateException("calling reset() when the iterator is closed");
107 throw new IllegalStateException("closing when already closed");
  /frameworks/base/core/java/android/database/sqlite/
DatabaseObjectNotClosedException.java 21 * that is not explicitly closed
SQLiteStatement.java 48 throw new IllegalStateException("database " + mDatabase.getPath() + " already closed");
74 throw new IllegalStateException("database " + mDatabase.getPath() + " already closed");
100 throw new IllegalStateException("database " + mDatabase.getPath() + " already closed");
126 throw new IllegalStateException("database " + mDatabase.getPath() + " already closed");
SQLiteClosable.java 22 * An object created from a SQLiteDatabase that can be closed.
35 "attempt to re-open an already-closed object: " + getObjInfo());
  /frameworks/base/core/tests/coretests/src/android/net/
LocalSocketTest.java 138 // Try write on closed socket
147 // Try read on closed socket
156 // Try write on socket whose peer has closed
165 // Try read on socket whose peer has closed
  /external/qemu/android/utils/
tempfile.h 40 ** all HANDLEs to it are closed in the terminating process.
43 ** that you want it closed in atexit() time. You should always call
  /frameworks/base/awt/javax/imageio/stream/
ImageInputStreamImpl.java 57 * The closed.
59 private boolean closed = false; field in class:ImageInputStreamImpl
73 * Check if the stream is closed and if true, throws an IOException.
76 * if the stream is closed.
79 if (closed) {
80 throw new IOException("stream is closed");
334 closed = true;
346 if (!closed) {
  /packages/apps/Email/src/org/apache/commons/io/input/
ClosedInputStream.java 22 * Closed input stream. This stream returns -1 to all attempts to read
40 * Returns -1 to indicate that the stream is closed.

Completed in 84 milliseconds

12 3 4 5 6 7 8 91011>>