HomeSort by relevance Sort by last modified time
    Searched defs:close (Results 101 - 125 of 7761) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/glide/library/src/main/java/com/bumptech/glide/load/data/
FileDescriptorAssetPathFetcher.java 22 protected void close(ParcelFileDescriptor data) throws IOException { method in class:FileDescriptorAssetPathFetcher
23 data.close();
FileDescriptorLocalUriFetcher.java 25 protected void close(ParcelFileDescriptor data) throws IOException { method in class:FileDescriptorLocalUriFetcher
26 data.close();
StreamAssetPathFetcher.java 22 protected void close(InputStream data) throws IOException { method in class:StreamAssetPathFetcher
23 data.close();
StreamLocalUriFetcher.java 25 protected void close(InputStream data) throws IOException { method in class:StreamLocalUriFetcher
26 data.close();
  /external/guava/guava/src/com/google/common/io/
Closeables.java 62 * Closeables.close(stream, threw);
68 * @param swallowIOException if true, don't propagate IO exceptions thrown by the {@code close}
70 * @throws IOException if {@code swallowIOException} is false and {@code close} throws an
73 public static void close(@Nullable Closeable closeable, method in class:Closeables
79 closeable.close();
91 * Equivalent to calling {@code close(closeable, true)}, but with no IOException in the signature.
97 * try-with-resources</a> statement if using JDK7 or {@link Closer} on JDK6 to close one or
110 close(closeable, true); method
132 close(inputStream, true); method
153 close(reader, true) method
    [all...]
CountingOutputStream.java 62 // Overriding close() because FilterOutputStream's close() method pre-JDK8 has bad behavior:
63 // it silently ignores any exception thrown by flush(). Instead, just close the delegate stream.
65 @Override public void close() throws IOException { method in class:CountingOutputStream
66 out.close();
GwtWorkarounds.java 45 void close() throws IOException; method in interface:GwtWorkarounds.CharInput
61 public void close() throws IOException { method in class:GwtWorkarounds
62 reader.close();
85 public void close() {
96 void close() throws IOException;
134 public void close() throws IOException {
135 input.close();
146 void close() throws IOException;
167 public void close() throws IOException {
168 output.close();
    [all...]
MultiInputStream.java 50 @Override public void close() throws IOException { method in class:MultiInputStream
53 in.close();
64 close(); method
MultiReader.java 46 close(); method
82 @Override public void close() throws IOException { method in class:MultiReader
85 current.close();
  /external/jacoco/org.jacoco.examples.test/src/org/jacoco/examples/
ClassInfoTest.java 53 in.close();
54 out.close();
  /external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
BaseResourceLoader.java 32 public void close(Reader reader) throws IOException { method in class:BaseResourceLoader
33 reader.close();
  /external/libmojo/mojo/public/java/bindings/src/org/chromium/mojo/bindings/
InterfaceRequest.java 43 * @see java.io.Closeable#close()
46 public void close() { method in class:InterfaceRequest
47 mHandle.close();
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/
CountingOutputStream.java 47 public void close() throws IOException { method in class:CountingOutputStream
48 out.close();
FinishableWrapperOutputStream.java 65 * Calls {@link java.io.OutputStream#close() out.close()}.
67 public void close() throws IOException { method in class:FinishableWrapperOutputStream
68 out.close();
SeekableFileInputStream.java 75 * Calls {@link RandomAccessFile#close() randomAccessFile.close()}.
77 public void close() throws IOException { method in class:SeekableFileInputStream
78 randomAccessFile.close();
  /external/okhttp/okio/okio/src/main/java/okio/
ForwardingSink.java 46 @Override public void close() throws IOException { method in class:ForwardingSink
47 delegate.close();
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowSQLiteOpenHelper.java 24 database.close();
30 public synchronized void close() { method in class:ShadowSQLiteOpenHelper
32 database.close();
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/io/
FileDataStore.java 25 @Override public void close() throws IOException { method in class:FileDataStore
26 raf.close();
  /frameworks/base/core/java/android/bluetooth/
BluetoothOutputStream.java 37 * Close this output stream and the socket associated with it.
39 public void close() throws IOException { method in class:BluetoothOutputStream
40 mSocket.close();
  /frameworks/base/core/java/android/content/
CursorEntityIterator.java 105 public final void close() { method in class:CursorEntityIterator
110 mCursor.close();
  /frameworks/base/core/java/android/net/
LocalServerSocket.java 110 @Override public void close() throws IOException method in class:LocalServerSocket
112 impl.close();
  /frameworks/ex/common/java/com/android/common/io/
MoreCloseables.java 30 cursor.close();
40 assetFileDescriptor.close();
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/org/xml/sax/support/
BrokenInputStream.java 51 public void close() throws IOException { method in class:BrokenInputStream
52 stream.close();
  /libcore/luni/src/test/java/libcore/java/io/
FileDescriptorTest.java 37 fis.close();
41 s.close();
  /libcore/ojluni/src/main/java/java/io/
FilterInputStream.java 175 * method simply performs <code>in.close()</code>.
180 public void close() throws IOException { method in class:FilterInputStream
181 in.close();

Completed in 358 milliseconds

1 2 3 45 6 7 8 91011>>