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

1234567891011>>

/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/tests/CoreTests/android/core/
H A DBufferedReaderTest.java42 a.close();
49 b.close();
56 c.close();
63 d.close();
H A DBufferedInputStreamTest.java43 a.close();
50 b.close();
57 c.close();
69 d.close();
78 e.close();
H A DLineNumberReaderTest.java48 a.close();
55 b.close();
62 c.close();
69 d.close();
76 e.close();
H A DPushbackInputStreamTest.java39 a.close();
47 b.close();
54 c.close();
H A DPushbackReaderTest.java39 a.close();
47 b.close();
54 c.close();
H A DDataInputStreamTest.java41 a.close();
48 b.close();
55 c.close();
64 d.close();
82 f.close();
104 g.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/os/
H A DParcelFileDescriptor.java28 * you to close it when done with it.
34 //PartialFileDescriptor but avoid invoking close twice
36 //in this particular case fd.close might be invoked twice.
163 * If an error occurs attempting to close this ParcelFileDescriptor.
165 public void close() throws IOException { method in class:ParcelFileDescriptor
172 // close method.
173 mParcelDescriptor.close();
181 * take care of calling {@link ParcelFileDescriptor#close
182 * ParcelFileDescritor.close()} for you when the stream is closed.
193 public void close() throw method in class:ParcelFileDescriptor.AutoCloseInputStream
212 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseOutputStream
[all...]
/frameworks/base/core/tests/coretests/src/android/os/
H A DMemoryFileTest.java68 fileToClose.close();
101 file.close();
119 is.close();
122 file.close();
165 is.close();
168 file.close();
172 // Tests that close() is idempotent
178 file.close();
179 file.close();
186 file.close();
[all...]
/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/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java76 e0.close();
77 e1.close();
78 e2.close();
99 e.close();
121 w0.close();
122 gz1.close();
123 os2.close();
124 gz3.close();
163 e0.close();
164 e1.close();
[all...]
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseStatementTest.java59 mDatabase.close();
90 statement.close();
126 statement1.close();
127 statement2.close();
139 statement.close();
149 c.close();
161 statement.close();
171 c.close();
184 statement.close();
193 c.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/tests/coretests/src/android/database/sqlite/
H A DSQLiteJDBCDriverTest.java118 st.close();
119 conn.close();
126 prst.close();
129 st.close();
/frameworks/base/obex/javax/obex/
H A DObexTransport.java62 void close() throws IOException; method in interface:ObexTransport
/frameworks/base/awt/javax/imageio/stream/
H A DFileCacheImageInputStream.java132 public void close() throws IOException { method in class:FileCacheImageInputStream
133 super.close();
134 raf.close();
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 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();

Completed in 500 milliseconds

1234567891011>>