Searched defs:close (Results 1 - 25 of 152) sorted by relevance

1234567

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DQuietlyCloseable.java22 * Interface for closeable objects whose close method doesn't throw IOExceptions.
26 void close(); method in interface:QuietlyCloseable
H A DNamedTaskExecutor.java42 void close(); method in interface:NamedTaskExecutor
H A DPerNameExecutor.java44 public synchronized void close() { method in class:PerNameExecutor
47 executor.close();
/packages/apps/Email/src/com/android/email/data/
H A DClosingMatrixCursor.java24 * {@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();
/packages/apps/Email/src/org/apache/commons/io/input/
H A DCloseShieldInputStream.java25 * passed to a component that wants to explicitly close the stream even if
48 public void close() { method in class:CloseShieldInputStream
H A DAutoCloseInputStream.java61 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();
84 * buffer. If the underlying stream returns -1, the {@link #close()} method
85 * i called to automatically close and discard the stream.
94 close();
101 * buffer. If the underlying stream returns -1, the {@link #close()} method
102 * i called to automatically close an
[all...]
H A DDemuxInputStream.java53 public void close() method in class:DemuxInputStream
59 input.close();
H A DTeeInputStream.java30 * The proxied input stream is closed when the {@link #close()} method is
88 public void close() throws IOException { method in class:TeeInputStream
90 super.close();
93 branch.close();
/packages/apps/Email/src/org/apache/commons/io/output/
H A DCloseShieldOutputStream.java25 * passed to a component that wants to explicitly close the stream even if
48 public void close() { method in class:CloseShieldOutputStream
H A DDemuxOutputStream.java53 public void close() method in class:DemuxOutputStream
59 output.close();
H A DNullWriter.java91 /** @see java.io.Writer#close() */
92 public void close() { method in class:NullWriter
H A DProxyOutputStream.java82 * Invokes the delegate's <code>close()</code> method.
85 public void close() throws IOException { method in class:ProxyOutputStream
86 out.close();
H A DProxyWriter.java104 * Invokes the delegate's <code>close()</code> method.
107 public void close() throws IOException { method in class:ProxyWriter
108 out.close();
H A DTeeOutputStream.java89 public void close() throws IOException { method in class:TeeOutputStream
90 super.close();
91 this.branch.close();
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionsProvider.java36 void close(); method in interface:SuggestionsProvider
H A DSuggestionCursor.java64 void close(); method in interface:SuggestionCursor
/packages/apps/Browser/src/com/android/browser/
H A DCombinedBookmarksCallbacks.java22 void close(); method in interface:CombinedBookmarksCallbacks
/packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
H A DBinaryTempFileBody.java74 base64Out.close();
84 public void close() throws IOException { method in class:BinaryTempFileBody.BinaryTempFileBodyInputStream
85 super.close();
/packages/apps/Email/src/com/android/email/mail/transport/
H A DExchangeSender.java42 public void close() { method in class:ExchangeSender
/packages/apps/Email/src/org/apache/james/mime4j/
H A DEOLConvertingInputStream.java76 public void close() throws IOException { method in class:EOLConvertingInputStream
77 in.close();
/packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
H A DFileLogger.java46 static public synchronized void close() { method in class:FileLogger
49 sLogWriter.close();
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/common/
H A DHttpClientFactory.java90 public static void close(HttpClient client) { method in class:HttpClientFactory
95 Method method = clazz.getMethod("close", (Class<?>[]) null);
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetSource.java30 public void close(); method in interface:WidgetSource
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockExecutor.java42 public void close() { method in class:MockExecutor
H A DMockNamedTaskExecutor.java39 public void close() { method in class:MockNamedTaskExecutor
40 mExecutor.close();

Completed in 3701 milliseconds

1234567