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

1234567

/frameworks/base/obex/javax/obex/
H A DPrivateOutputStream.java159 public void close() throws IOException { method in class:PrivateOutputStream
H A DServerSession.java147 close();
653 * Closes the server session - in detail close I/O streams and the
657 public synchronized void close() { method in class:ServerSession
662 mInput.close();
663 mOutput.close();
664 mTransport.close();
/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/opt/mms/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.java48 * BluetoothSocket} is acquired, it's a good idea to call {@link #close()} on
51 * close the returned {@link BluetoothSocket}.
54 * safe. In particular, {@link #close} will always immediately abort ongoing
55 * operations and close the server socket.
111 * <p>{@link #close} can be used to abort this call from another thread.
125 * <p>{@link #close} can be used to abort this call from another thread.
135 * Immediately close this socket, and release all associated resources.
139 * close any {@link BluetoothSocket} received from {@link #accept()}.
141 public void close() throws IOException { method in class:BluetoothServerSocket
147 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.java67 public void close() throws IOException { method in class:SerialPort
69 mFileDescriptor.close();
/frameworks/base/core/java/android/net/arp/
H A DArpPeer.java158 peer.close();
168 public void close() { method in class:ArpPeer
170 mSocket.close();
/frameworks/base/core/java/android/net/http/
H A DHttpResponseCache.java192 // don't close and reopen if an equivalent cache is already installed
199 installedCache.close();
277 @Override public void close() throws IOException { method in class:HttpResponseCache
281 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");
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/com/android/internal/util/
H A DProcFileReader.java230 public void close() throws IOException { method in class:ProcFileReader
231 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/media/mca/filterfw/java/android/filterfw/core/
H A DFilterFunction.java100 public void close() { method in class:FilterFunction
H A DGraphRunner.java93 public abstract void close(); method in class:GraphRunner
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/nfc-extras/java/com/android/nfc_extras/
H A DNfcExecutionEnvironment.java154 * on its contact interface, so make sure to call {@link #close} once complete.
184 public void close() throws IOException { method in class:NfcExecutionEnvironment
186 throwBundle(mExtras.getService().close(mExtras.mPackageName, mToken));

Completed in 556 milliseconds

1234567