Searched refs:close (Results 1 - 25 of 592) sorted by relevance

1234567891011>>

/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/util/
H A DNamedTaskExecutor.java42 void close(); method in interface:NamedTaskExecutor
H A DQuietlyCloseable.java22 * 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/
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/emailcommon/src/org/apache/commons/io/input/
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 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 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();
H A DDemuxInputStream.java53 public void close() method in class:DemuxInputStream
59 input.close();
H A DProxyInputStream.java98 * Invokes the delegate's <code>close()</code> method.
101 public void close() throws IOException { method in class:ProxyInputStream
102 in.close();
H A DProxyReader.java98 * Invokes the delegate's <code>close()</code> method.
101 public void close() throws IOException { method in class:ProxyReader
102 in.close();
/packages/apps/Browser/src/com/android/browser/
H A DCombinedBookmarksCallbacks.java22 void close(); method in interface:CombinedBookmarksCallbacks
/packages/apps/Email/emailcommon/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 DTeeOutputStream.java89 public void close() throws IOException { method in class:TeeOutputStream
90 super.close();
91 this.branch.close();
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 DNullWriter.java91 /** @see java.io.Writer#close() */
92 public void close() { method in class:NullWriter
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionsProvider.java36 void close(); method in interface:SuggestionsProvider
H A DQsbApplicationWrapper.java29 mApp.close();
/packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
H A DCloseUtils.java27 /** If the argument is non-null, close the cursor. */
30 cursor.close();
/packages/apps/QuickSearchBox/tests/src/com/android/quicksearchbox/util/
H A DMockNamedTaskExecutor.java39 public void close() { method in class:MockNamedTaskExecutor
40 mExecutor.close();
/packages/apps/Browser/tests/src/com/android/browser/tests/
H A DBookmarksTests.java51 c.close();
58 c.close();
60 if (c != null) c.close();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DDictionaryPool.java67 public void close() { method in class:DictionaryPool
71 dict.mDictionary.close();
80 dict.mDictionary.close();
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DSynchronouslyLoadedContactsDictionary.java46 public synchronized void close() { method in class:SynchronouslyLoadedContactsDictionary
47 // Actually with the current implementation of ContactsDictionary it's safe to close
51 super.close();
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
H A DWidgetSource.java30 public void close(); method in interface:WidgetSource
/packages/apps/Bluetooth/src/com/android/bluetooth/opp/
H A DBluetoothOppRfcommTransport.java54 public void close() throws IOException { method in class:BluetoothOppRfcommTransport
55 mSocket.close();
/packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
H A DBluetoothPbapRfcommTransport.java53 public void close() throws IOException { method in class:BluetoothPbapRfcommTransport
54 mSocket.close();
/packages/apps/Camera/tests/src/com/android/camera/stress/
H A DTestUtil.java43 mOut.close();
44 mfstream.close();

Completed in 333 milliseconds

1234567891011>>