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

1234567891011>>

/packages/apps/Camera2/src/com/android/camera/async/
H A DSafeCloseable.java20 * An {@link AutoCloseable} which should not throw in {@link #close}.
24 * Implementations must tolerate multiple calls to close().
27 public void close(); method in interface:SafeCloseable
H A DBufferQueueController.java36 * Closes the stream. Implementations must tolerate multiple calls to close.
39 public void close(); method in interface:BufferQueueController
H A DListenable.java50 mExistingCallbackHandle.close();
69 mExistingCallbackHandle.close();
78 public void close() { method in class:Listenable
H A DRefCountedBufferQueueController.java46 public void close() { method in class:RefCountedBufferQueueController
47 mBuffer.close();
/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/UnifiedEmail/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();
/packages/apps/Email/src/com/android/email/data/
H A DClosingMatrixCursor.java25 * {@link MatrixCursor} which takes an extra {@link Cursor} to the constructor, and close
37 public void close() { method in class:ClosingMatrixCursor
39 mInnerCursor.close();
41 super.close();
/packages/apps/Browser/src/com/android/browser/
H A DCombinedBookmarksCallbacks.java22 void close(); method in interface:CombinedBookmarksCallbacks
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
H A DSuggestionsProvider.java33 void close(); method in interface:SuggestionsProvider
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/ticketpool/
H A DTicket.java25 * They may be released by calling {@link #close}.
33 public void close(); method in interface:Ticket
/packages/apps/UnifiedEmail/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();
/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/Messaging/src/com/android/messaging/datamodel/media/
H A DVCardResource.java23 * the VCardResource is no longer used (i.e. close() is called), we need to asynchronously
47 protected void close() { method in class:VCardResource
49 vcard.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/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/util/
H A DTicketImageProxy.java42 public void close() { method in class:TicketImageProxy
49 super.close();
50 mTicket.close();
/packages/apps/Camera2/src/com/android/camera/one/v2/sharedimagereader/imagedistributor/
H A DRefCountedImageProxy.java43 public void close() { method in class:RefCountedImageProxy
44 mRefCount.close();
H A DSingleCloseImageProxy.java26 * Wraps {@link ImageProxy} to filter out multiple calls to {@link #close}.
40 public void close() { method in class:SingleCloseImageProxy
42 super.close();
/packages/apps/Camera2/src/com/android/camera/burst/
H A DRingBuffer.java56 image.close();
86 public synchronized void close() { method in class:RingBuffer
88 mImages.valueAt(i).close();
94 mImages.get(timestampNs).close();

Completed in 607 milliseconds

1234567891011>>