Searched defs:close (Results 51 - 75 of 298) sorted by relevance

1234567891011>>

/frameworks/av/include/media/stagefright/
H A DDataSource.h119 virtual void close() {}; function in class:android::DataSource
H A DRemoteDataSource.h41 close();
56 virtual void close() { function in class:android::RemoteDataSource
/frameworks/av/media/libaudiohal/
H A DEffectHalLocal.cpp79 status_t EffectHalLocal::close() { function in class:android::EffectHalLocal
/frameworks/av/media/libstagefright/foundation/include/
H A DDataSource.h119 virtual void close() {}; function in class:android::DataSource
H A DRemoteDataSource.h41 close();
56 virtual void close() { function in class:android::RemoteDataSource
/frameworks/av/media/libstagefright/include/
H A DDataSource.h119 virtual void close() {}; function in class:android::DataSource
H A DRemoteDataSource.h41 close();
56 virtual void close() { function in class:android::RemoteDataSource
/frameworks/av/services/oboeservice/
H A DAAudioServiceEndpoint.cpp62 aaudio_result_t AAudioServiceEndpoint::close() { function in class:AAudioServiceEndpoint
63 return getStreamInternal()->close();
H A DAAudioServiceStreamBase.cpp44 close();
58 aaudio_result_t AAudioServiceStreamBase::close() { function in class:AAudioServiceStreamBase
/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.
138 * <p>{@link #close} can be used to abort this call from another thread.
152 * <p>{@link #close} can be used to abort this call from another thread.
162 * Immediately close this socket, and release all associated resources.
166 * close any {@link BluetoothSocket} received from {@link #accept()}.
168 public void close() throws IOException { method in class:BluetoothServerSocket
174 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/content/pm/split/
H A DSplitAssetDependencyLoader.java124 public void close() throws Exception { method in class:SplitAssetDependencyLoader
/frameworks/base/core/java/android/database/
H A DBulkCursorNative.java84 close();
207 public void close() throws RemoteException method in class:BulkCursorProxy
H A DBulkCursorToCursorAdaptor.java116 public void close() { method in class:BulkCursorToCursorAdaptor
117 super.close();
121 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.java187 // don't close and reopen if an equivalent cache is already installed
193 trueResponseCache.close();
277 @Override public void close() throws IOException { method in class:HttpResponseCache
281 delegate.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/core/tests/utiltests/src/android/util/
H A DRemoteIntArray.java98 public void close() { method in class:RemoteIntArray
100 mRemoteInstance.close();
/frameworks/base/media/java/android/media/
H A DAmrInputStream.java171 public void close() throws IOException { method in class:AmrInputStream
174 mInputStream.close();
H A DImage.java274 public abstract void close(); method in class:Image
H A DResampleInputStream.java128 public void close() throws IOException { method in class:ResampleInputStream
130 if (mInputStream != null) mInputStream.close();
139 close();
140 throw new IllegalStateException("someone forgot to close ResampleInputStream");
/frameworks/base/media/java/android/media/midi/
H A DMidiOutputPort.java101 mGuard.open("close");
128 public void close() throws IOException { method in class:MidiOutputPort
132 mGuard.close();
133 mInputStream.close();
138 Log.e(TAG, "RemoteException in MidiOutputPort.close()");
151 close();

Completed in 794 milliseconds

1234567891011>>