HomeSort by relevance Sort by last modified time
    Searched refs:close (Results 1 - 25 of 5168) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/java/lang/
AutoCloseable.java 21 * are not used any longer. Calling the {@code close} method releases resources
29 * foo.close();
42 * call {@link #close} more than once.
44 void close() throws Exception; method in interface:AutoCloseable
  /external/dropbear/libtomcrypt/
fixupind.pl 8 close OUT;
9 close IN;
filter.pl 20 close INS;
29 close TMP;
30 close SRC;
  /libcore/luni/src/main/java/java/io/
Closeable.java 20 * An {@code AutoCloseable} whose close method may throw an {@link IOException}.
27 * <p>Although only the first call has any effect, it is safe to call close
29 * overridden {@code AutoCloseable.close()}, which may be called at most
32 void close() throws IOException; method in interface:Closeable
  /external/jmonkeyengine/engine/src/networking/com/jme3/network/kernel/
Endpoint.java 79 public void close(); method in interface:Endpoint
85 * close() is still flushing the earlier queued messages.
87 public void close(boolean flushData); method in interface:Endpoint
  /libcore/luni/src/main/java/java/util/logging/
ConsoleHandler.java 57 public void close() { method in class:ConsoleHandler
58 super.close(false);
  /external/webkit/Source/WebKit/chromium/public/
WebExternalPopupMenu.h 41 virtual void close() = 0;
WebSocketStreamHandle.h 52 // Close the socket stream.
53 virtual void close() = 0;
  /frameworks/base/core/java/android/content/
EntityIterator.java 24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
38 public void close(); method in interface:EntityIterator
  /libcore/luni/src/main/java/java/nio/channels/
InterruptibleChannel.java 27 * the channel's {@link #close()} method. The I/O thread will throw an
50 public void close() throws IOException; method in interface:InterruptibleChannel
Channel.java 49 * If multiple threads attempt to simultaneously close a channel, then only
56 public void close() throws IOException; method in interface:Channel
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
NamedTaskExecutor.java 42 void close(); method in interface:NamedTaskExecutor
QuietlyCloseable.java 22 * Interface for closeable objects whose close method doesn't throw IOExceptions.
26 void close(); method in interface:QuietlyCloseable
  /packages/apps/Email/src/com/android/email/data/
ClosingMatrixCursor.java 24 * {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and close
36 public void close() { method in class:ClosingMatrixCursor
38 mInnerCursor.close();
40 super.close();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
DataOutputStreamTest.java 53 dis.close();
62 os.close();
66 dis.close();
75 os.close();
79 dis.close();
89 os.close();
92 dis.close();
101 os.close();
104 dis.close();
113 os.close();
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/input/
AutoCloseInputStream.java 61 public void close() throws IOException { method in class:AutoCloseInputStream
62 in.close();
68 * If the underlying stream returns -1, the {@link #close()} method is
69 * called to automatically close and discard the stream.
77 close(); method
84 * buffer. If the underlying stream returns -1, the {@link #close()} method
85 * i called to automatically close and discard the stream.
94 close(); method
101 * buffer. If the underlying stream returns -1, the {@link #close()} method
102 * i called to automatically close and discard the stream.
113 close(); method
125 close(); method
    [all...]