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

12345678

/frameworks/base/core/java/android/nfc/tech/
H A DBasicTagTechnology.java117 public void close() throws IOException { method in class:BasicTagTechnology
H A DTagTechnology.java71 * <li>{@link #close} must be called after completing I/O operations with a
170 * {@link IOException} by calling {@link #close} from another thread.
172 * <p>Applications must call {@link #close} when I/O operations are complete.
176 * @see #close()
188 * {@link IOException} by calling {@link #close} from another thread.
193 * @see #close()
209 public void close() throws IOException; method in interface:TagTechnology
214 * <p>Returns true if {@link #connect} has completed, and {@link #close} has not been
/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();
H A DLogWriter.java56 @Override public void close() { method in class:LogWriter
/frameworks/base/core/java/android/webkit/
H A DWebIconDatabase.java61 public abstract void close(); method in class:WebIconDatabase
/frameworks/base/drm/java/android/drm/
H A DDrmOutputStream.java84 public void close() throws IOException { method in class:DrmOutputStream
89 mPfd.close();
/frameworks/base/media/java/android/media/
H A DImage.java172 public abstract void close(); method in class:Image
/frameworks/base/obex/javax/obex/
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.java159 public void close() throws IOException { method in class:PrivateOutputStream
/frameworks/base/services/core/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/tools/layoutlib/bridge/src/libcore/io/
H A DMemoryMappedFile_Delegate.java77 file.close();
85 static void close(MemoryMappedFile thisFile) throws ErrnoException { method in class:MemoryMappedFile_Delegate
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexTransport.java39 public void close() throws IOException { method in class:BluetoothPbapObexTransport
40 mSocket.close();
/frameworks/opt/telephony/src/java/com/google/android/mms/util/
H A DDrmConvertSession.java124 public int close(String filename) { method in class:DrmConvertSession
156 rndAccessFile.close();
159 Log.w(TAG, "Failed to close File:" + filename
166 Log.w(TAG, "Could not close convertsession. Convertsession: " +
/frameworks/volley/src/com/android/volley/toolbox/
H A DPoolingByteArrayOutputStream.java57 public void close() throws IOException { method in class:PoolingByteArrayOutputStream
60 super.close();
/frameworks/webview/chromium/java/com/android/webview/chromium/
H A DWebIconDatabaseAdapter.java35 public void close() { method in class:WebIconDatabaseAdapter
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothServerSocket.java47 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
50 * close the returned {@link BluetoothSocket}.
53 * safe. In particular, {@link #close} will always immediately abort ongoing
54 * operations and close the server socket.
110 * <p>{@link #close} can be used to abort this call from another thread.
124 * <p>{@link #close} can be used to abort this call from another thread.
134 * Immediately close this socket, and release all associated resources.
138 * close any {@link BluetoothSocket} received from {@link #accept()}.
140 public void close() throws IOException { method in class:BluetoothServerSocket
146 mSocket.close();
[all...]
/frameworks/base/core/java/android/content/
H A DContentQueryMap.java134 // while another thread called close(), which nulls out mCursor.
168 public synchronized void close() { method in class:ContentQueryMap
173 mCursor.close();
179 if (mCursor != null) close();
/frameworks/base/core/java/android/database/
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 DIBulkCursor.java48 public void close() throws RemoteException; method in interface:IBulkCursor
/frameworks/base/core/java/android/hardware/
H A DSerialPort.java62 public void close() throws IOException { method in class:SerialPort
64 mFileDescriptor.close();
/frameworks/base/core/java/android/hardware/camera2/utils/
H A DCloseableLock.java78 public void close() { method in class:CloseableLock.ScopedLock
108 * if an attempt is made to {@code close} while this thread has a lock acquired
111 public void close() { method in class:CloseableLock
114 log("close - already closed; ignoring");
126 "Cannot close while one or more acquired locks are being held by this " +
145 log("close - completed");
194 // Did another thread #close while we were waiting? Unblock immediately.
267 // Did another thread #close while we were waiting? Unblock immediately.
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java188 // don't close and reopen if an equivalent cache is already installed
195 installedCache.close();
273 @Override public void close() throws IOException { method in class:HttpResponseCache
277 delegate.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");

Completed in 415 milliseconds

12345678