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

123456

/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...]
H A DBluetoothA2dp.java165 /*package*/ void close() { method in class:BluetoothA2dp
189 close();
H A DBluetoothPbap.java38 * BluetoothPbap service. Users of this object should call close() when they
168 close();
177 * results once close() has been called. Multiple invocations of close()
180 public synchronized void close() { method in class:BluetoothPbap
/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
H A DCursorToBulkCursorAdaptor.java107 mFilledWindow.close();
115 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/
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.java186 // don't close and reopen if an equivalent cache is already installed
285 @Override public void close() throws IOException { method in class:HttpResponseCache
289 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 DWebBackForwardListClassic.java105 /*package*/ synchronized void close(int nativeFrame) { method in class:WebBackForwardListClassic
/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/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/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/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();

Completed in 2027 milliseconds

123456