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

12345

/frameworks/base/core/java/android/content/
H A DEntityIterator.java24 * resetting the iterator back to the beginning and provides for an explicit {@link #close()}
38 public void close(); method in interface:EntityIterator
H A DCursorEntityIterator.java105 public final void close() { method in class:CursorEntityIterator
110 mCursor.close();
/frameworks/base/core/java/android/content/res/
H A DXmlResourceParser.java26 * an additional close() method on this interface for the client to indicate
34 public void close(); method in interface:XmlResourceParser
/frameworks/base/core/java/android/os/
H A DConditionVariable.java25 * open(), close() and block() are sticky. If open() is called before block(),
59 * Any threads that later approach block() will not block unless close()
79 public void close() method in class:ConditionVariable
/frameworks/base/awt/com/android/internal/awt/
H A DImageOutputStreamWrapper.java60 public void close() throws IOException { method in class:ImageOutputStreamWrapper
/frameworks/base/awt/javax/imageio/stream/
H A DFileImageInputStream.java118 public void close() throws IOException { method in class:FileImageInputStream
119 super.close();
120 raf.close();
H A DFileImageOutputStream.java124 public void close() throws IOException { method in class:FileImageOutputStream
125 super.close();
126 file.close();
H A DFileCacheImageInputStream.java132 public void close() throws IOException { method in class:FileCacheImageInputStream
133 super.close();
134 raf.close();
H A DMemoryCacheImageInputStream.java109 public void close() throws IOException { method in class:MemoryCacheImageInputStream
110 super.close();
111 ramc.close();
H A DMemoryCacheImageOutputStream.java116 public void close() throws IOException { method in class:MemoryCacheImageOutputStream
118 super.close();
119 ramc.close();
H A DFileCacheImageOutputStream.java86 public void close() throws IOException { method in class:FileCacheImageOutputStream
88 super.close();
89 raf.close();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothInputStream.java43 public void close() throws IOException { method in class:BluetoothInputStream
44 mSocket.close();
H A DBluetoothOutputStream.java39 public void close() throws IOException { method in class:BluetoothOutputStream
40 mSocket.close();
H A DBluetoothServerSocket.java46 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
49 * close the returned {@link BluetoothSocket}.
52 * safe. In particular, {@link #close} will always immediately abort ongoing
53 * operations and close the server socket.
85 * <p>{@link #close} can be used to abort this call from another thread.
99 * <p>{@link #close} can be used to abort this call from another thread.
109 * Immediately close this socket, and release all associated resources.
113 * close any {@link BluetoothSocket} received from {@link #accept()}.
115 public void close() throws IOException { method in class:BluetoothServerSocket
121 mSocket.close();
[all...]
/frameworks/base/core/java/android/net/
H A DLocalServerSocket.java113 public void close() throws IOException method in class:LocalServerSocket
115 impl.close();
/frameworks/base/core/java/com/android/internal/logging/
H A DAndroidHandler.java114 public void close() { method in class:AndroidHandler
115 // No need to close, but must implement abstract method.
/frameworks/base/libs/surfaceflinger/
H A DBarrier.h40 void close() { function in class:android::Barrier
/frameworks/base/obex/javax/obex/
H A DObexTransport.java62 void close() throws IOException; method in interface:ObexTransport
H A DOperation.java77 * out.close();
78 * op.close();
96 * in.close();
97 * op.close();
103 * <code>close()</code> the <code>OutputStream</code> returned from
108 * <code>getResponseCode()</code> will do an implicit close on the
114 * close on the <code>InputStream</code>. No further data may be read at this
124 * operation since <code>close()</code> will be called by this method.
178 void close() throws IOException; method in interface:Operation
H A DPrivateInputStream.java177 public void close() throws IOException { method in class:PrivateInputStream
H A DPrivateOutputStream.java162 public void close() throws IOException { method in class:PrivateOutputStream
/frameworks/base/core/java/android/util/
H A DBase64OutputStream.java89 * before doing a write(byte[], int, int) or a close().
104 public void close() throws IOException { method in class:Base64OutputStream
115 out.close();
/frameworks/base/services/java/com/android/server/
H A DRandomBlock.java48 close(stream);
73 close(out);
91 private static void close(Closeable c) { method in class:RandomBlock
96 c.close();
/frameworks/base/awt/org/apache/harmony/x/imageio/plugins/jpeg/
H A DIISDecodingImageSource.java111 public void close() throws IOException { method in class:IISDecodingImageSource.IISToInputStreamWrapper
112 input.close();
/frameworks/base/awt/org/apache/harmony/x/imageio/stream/
H A DRandomAccessMemoryCache.java44 public void close() { method in class:RandomAccessMemoryCache

Completed in 349 milliseconds

12345