Searched defs:close (Results 76 - 100 of 142) sorted by last modified time

123456

/frameworks/base/core/java/android/content/res/
H A DAssetFileDescriptor.java69 * in addition to the normal FileDescriptor object also allows you to close
123 * Convenience for calling <code>getParcelFileDescriptor().close()</code>.
125 public void close() throws IOException { method in class:AssetFileDescriptor
126 mFd.close();
130 * Create and return a new auto-close input stream for this asset. This
145 * Create and return a new auto-close output stream for this asset. This
167 * take care of calling {@link ParcelFileDescriptor#close
168 * ParcelFileDescritor.close()} for you when the stream is closed.
254 * take care of calling {@link ParcelFileDescriptor#close
255 * ParcelFileDescritor.close()} fo
[all...]
H A DAssetManager.java133 public void close() { method in class:AssetManager
457 block.close();
557 public final void close() throws IOException { method in class:AssetManager.AssetInputStream
591 close();
H A DXmlBlock.java49 public void close() { method in class:XmlBlock
259 // Automatically close the parse when we reach the end of
263 close();
443 public void close() { method in class:XmlBlock.Parser
454 close();
470 close();
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/database/
H A DAbstractCursor.java145 public void close() { method in class:AbstractCursor
317 // cursor will unregister all observers when it close
434 if (!mClosed) close();
H A DBulkCursorNative.java84 close();
207 public void close() throws RemoteException method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java117 public void close() { method in class:BulkCursorToCursorAdaptor
118 super.close();
122 mBulkCursor.close();
H A DCursor.java372 void close(); method in interface:Cursor
401 * {@link #requery()}, {@link #deactivate()}, or {@link #close()}.
H A DCursorToBulkCursorAdaptor.java107 mFilledWindow.close();
115 mCursor.close();
210 public void close() { method in class:CursorToBulkCursorAdaptor
H A DCursorWrapper.java48 public void close() { method in class:CursorWrapper
49 mCursor.close();
H A DDatabaseUtils.java803 prog.close();
825 prog.close();
850 prog.close();
1042 if (cur != null) cur.close();
1309 public void close() { method in class:DatabaseUtils.InsertHelper
1311 mInsertStatement.close();
1315 mReplaceStatement.close();
1345 db.close();
H A DIBulkCursor.java48 public void close() throws RemoteException; method in interface:IBulkCursor
H A DMergeCursor.java171 public void close() { method in class:MergeCursor
175 mCursors[i].close();
177 super.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
H A DSQLiteConnection.java170 mCloseGuard.open("close");
204 void close() { method in class:SQLiteConnection
226 mCloseGuard.close();
230 final int cookie = mRecentOperations.beginOperation("close", null, null);
1142 window.close();
H A DSQLiteConnectionPool.java190 mCloseGuard.open("close");
204 public void close() { method in class:SQLiteConnectionPool
213 mCloseGuard.close();
266 // because we need to close all but the primary connection first.
296 // we have no choice but to close the primary connection beforehand
303 // close and discard all existing connections.
490 + "to end transactions in progress properly and to close the database "
528 connection.close(); // might throw
530 Log.e(TAG, "Failed to close connection, its fate is now in the hands "
H A DSQLiteCursor.java196 public void close() { method in class:SQLiteCursor
197 super.close();
199 mQuery.close();
252 // if the cursor hasn't been closed yet, close it first
264 close();
H A DSQLiteOpenHelper.java151 * (Make sure to call {@link #close} when you no longer need the database.)
160 * @return a read/write database object valid until {@link #close} is called
184 * or {@link #close} is called.
195 // Darn! The user closed the database by calling mDatabase.close().
278 db.close();
286 public synchronized void close() { method in class:SQLiteOpenHelper
290 mDatabase.close();
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java67 public void close() throws IOException { method in class:SerialPort
69 mFileDescriptor.close();
/frameworks/base/core/java/android/hardware/usb/
H A DUsbDeviceConnection.java56 public void close() { method in class:UsbDeviceConnection
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 DLocalServerSocket.java113 public void close() throws IOException method in class:LocalServerSocket
115 impl.close();
H A DLocalSocket.java172 public void close() throws IOException { method in class:LocalSocket
174 impl.close();
H A DLocalSocketImpl.java58 public void close() throws IOException { method in class:LocalSocketImpl.SocketInputStream
59 LocalSocketImpl.this.close();
106 public void close() throws IOException { method in class:LocalSocketImpl.SocketOutputStream
107 LocalSocketImpl.this.close();
222 public void close() throws IOException { method in class:LocalSocketImpl
487 close();

Completed in 138 milliseconds

123456