Searched defs:close (Results 26 - 50 of 122) sorted by relevance

12345

/frameworks/base/core/java/android/database/sqlite/
H A DSQLiteQuery.java161 public void close() { method in class:SQLiteQuery
162 super.close();
H A DDatabaseConnectionPool.java59 * close all database connections in the pool - even if they are in use!
61 /* package */ synchronized void close() { method in class:DatabaseConnectionPool
66 mPool.get(i).mDb.close();
H A DSQLiteCursor.java221 public void close() { method in class:SQLiteCursor
222 super.close();
224 mQuery.close();
263 // close the old mQuery object and open a new one
264 mQuery.close();
324 // if the cursor hasn't been closed yet, close it first
334 close();
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java171 // don't close and reopen if an equivalent cache is already installed
255 @Override public void close() throws IOException { method in class:HttpResponseCache
259 delegate.getCache().close();
/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");
H A DUlawEncoderInputStream.java175 public void close() throws IOException { method in class:UlawEncoderInputStream
179 in.close();
/frameworks/base/core/java/android/util/
H A DBase64InputStream.java87 public void close() throws IOException { method in class:Base64InputStream
88 in.close();
/frameworks/base/core/java/android/webkit/
H A DWebBackForwardList.java130 /*package*/ synchronized void close(int nativeFrame) { method in class:WebBackForwardList
/frameworks/base/core/java/com/android/internal/util/
H A DProcFileReader.java196 public void close() throws IOException { method in class:ProcFileReader
197 mStream.close();
/frameworks/base/media/java/android/media/
H A DAmrInputStream.java105 public void close() throws IOException { method in class:AmrInputStream
107 if (mInputStream != null) mInputStream.close();
125 close();
126 throw new IllegalStateException("someone forgot to close AmrInputStream");
H A DResampleInputStream.java130 public void close() throws IOException { method in class:ResampleInputStream
132 if (mInputStream != null) mInputStream.close();
141 close();
142 throw new IllegalStateException("someone forgot to close ResampleInputStream");
/frameworks/base/obex/javax/obex/
H A DServerSession.java147 close();
649 * Closes the server session - in detail close I/O streams and the
653 public synchronized void close() { method in class:ServerSession
658 mInput.close();
659 mOutput.close();
660 mTransport.close();
/frameworks/compile/libbcc/lib/ExecutionEngine/
H A DFileHandle.cpp71 ::close(mFD);
80 // use this->close() to close the file now.
89 // Just close the file, and retry after sleeping.
91 this->close();
106 void FileHandle::close() { function in class:bcc::FileHandle
109 ::close(mFD);
/frameworks/opt/vcard/tests/src/com/android/vcard/tests/testutils/
H A DExportTestProvider.java76 public void close() { method in class:ExportTestProvider.MockEntityIterator
176 public void close() {
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java132 /*package*/ void close() { method in class:BluetoothA2dp
H A DBluetoothInputDevice.java121 /*package*/ void close() { method in class:BluetoothInputDevice
H A DBluetoothPan.java142 /*package*/ void close() { method in class:BluetoothPan
H A DBluetoothPbap.java38 * BluetoothPbap service. Users of this object should call close() when they
124 close();
133 * results once close() has been called. Multiple invocations of close()
136 public synchronized void close() { method in class:BluetoothPbap
/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java104 close();
281 public void close() throws RemoteException method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java128 public void close() { method in class:BulkCursorToCursorAdaptor
129 super.close();
133 mBulkCursor.close();
H A DCursorToBulkCursorAdaptor.java106 mFilledWindow.close();
114 mCursor.close();
210 public void close() { method in class:CursorToBulkCursorAdaptor
H A DMergeCursor.java171 public void close() { method in class:MergeCursor
175 mCursors[i].close();
177 super.close();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbRequest.java70 public void close() { method in class:UsbRequest
80 close();
/frameworks/base/core/java/android/net/
H A DLinkSocket.java225 public synchronized void close() throws IOException { method in class:LinkSocket
226 if (DBG) log("close() EX");
H A DLocalSocket.java161 public void close() throws IOException { method in class:LocalSocket
163 impl.close();

Completed in 317 milliseconds

12345