Searched refs:close (Results 1 - 25 of 650) 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/ex/common/java/com/android/common/io/
H A DMoreCloseables.java30 cursor.close();
40 assetFileDescriptor.close();
/frameworks/base/media/mca/filterfw/java/android/filterfw/core/
H A DInputPort.java49 public void close() { method in class:InputPort
51 mSourcePort.close();
53 super.close();
H A DOutputPort.java51 public void close() { method in class:OutputPort
52 super.close();
54 mTargetPort.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();
/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteClosable.java31 * a call to {@link #releaseReference()} or {@link #close()}.
105 public void close() { method in class:SQLiteClosable
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DCameraBrowserApplication.java32 mClient.close();
/frameworks/compile/mclinker/unittests/
H A DFileHandleTest.cpp56 ASSERT_TRUE(m_pTestee->close());
75 ASSERT_TRUE(m_pTestee->close());
81 int close_result = ::close(fd);
96 int close_result = ::close(m_pTestee->handler());
99 ASSERT_FALSE(m_pTestee->close());
/frameworks/base/services/tests/servicestests/src/com/android/server/
H A DDropBoxTest.java83 e0.close();
84 e1.close();
85 e2.close();
106 e.close();
128 w0.close();
129 gz1.close();
130 os2.close();
131 gz3.close();
170 e0.close();
171 e1.close();
[all...]
/frameworks/base/voip/jni/rtp/
H A DRtpStream.cpp53 ::close(socket);
64 ::close(socket);
85 ::close(socket);
89 void close(JNIEnv *env, jobject thiz) function in namespace:__anon1177
92 ::close(socket);
98 {"close", "()V", (void *)close},
/frameworks/base/core/tests/coretests/src/android/database/
H A DDatabaseStatementTest.java57 mDatabase.close();
88 statement.close();
124 statement1.close();
125 statement2.close();
137 statement.close();
147 c.close();
159 statement.close();
169 c.close();
182 statement.close();
191 c.close();
[all...]
/frameworks/base/core/java/android/os/
H A DParcelFileDescriptor.java33 * you to close it when done with it.
152 * so you must still close that fd as well as the new ParcelFileDescriptor.
170 * responsible for closing it. You must not close the fd yourself.
188 * the Socket, so you must still close the Socket as well as the new
302 mGuard.close();
307 mGuard.close();
317 * If an error occurs attempting to close this ParcelFileDescriptor.
320 public void close() throws IOException { method in class:ParcelFileDescriptor
323 mGuard.close();
327 // close metho
348 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseInputStream
371 public void close() throws IOException { method in class:ParcelFileDescriptor.AutoCloseOutputStream
[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/libs/androidfw/tests/
H A DTestHelpers.h39 ::close(sendFd);
43 ::close(receiveFd);
/frameworks/native/libs/utils/tests/
H A DTestHelpers.h39 ::close(sendFd);
43 ::close(receiveFd);
/frameworks/base/core/java/android/nfc/tech/
H A DTagTechnology.java70 * <li>{@link #close} must be called after completing I/O operations with a
169 * {@link IOException} by calling {@link #close} from another thread.
171 * <p>Applications must call {@link #close} when I/O operations are complete.
175 * @see #close()
187 * {@link IOException} by calling {@link #close} from another thread.
192 * @see #close()
208 public void close() throws IOException; method in interface:TagTechnology
213 * <p>Returns true if {@link #connect} has completed, and {@link #close} has not been
/frameworks/base/core/tests/coretests/src/android/net/
H A DLinkSocketTest.java33 ls.close();
/frameworks/base/obex/javax/obex/
H A DObexTransport.java62 void close() throws IOException; method in interface:ObexTransport
/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/compile/linkloader/android/
H A Dtest-librsloader.c83 close(fd);
92 close(fd);
99 close(fd);
113 close(fd);
/frameworks/base/core/java/android/speech/srec/
H A DMicrophoneInputStream.java51 close();
80 public void close() throws IOException { method in class:MicrophoneInputStream
97 close();
98 throw new IOException("someone forgot to close MicrophoneInputStream");
/frameworks/base/core/tests/coretests/src/android/os/
H A DMemoryFileTest.java66 fileToClose.close();
99 file.close();
136 is.close();
139 file.close();
182 is.close();
185 file.close();
189 // Tests that close() is idempotent
195 file.close();
196 file.close();
203 file.close();
[all...]

Completed in 576 milliseconds

1234567891011>>