Searched defs:disconnect (Results 1 - 25 of 103) sorted by relevance

12345

/frameworks/av/services/camera/libcameraservice/api1/client2/
H A DZslProcessorInterface.cpp22 status_t ZslProcessorInterface::disconnect() { function in class:android::camera2::ZslProcessorInterface
/frameworks/base/media/java/android/media/midi/
H A DMidiSender.java40 * @param receiver the receiver to disconnect
42 public void disconnect(MidiReceiver receiver) { method in class:MidiSender
44 throw new NullPointerException("receiver null in MidiSender.disconnect");
57 * Called to disconnect a {@link MidiReceiver} from the sender
59 * @param receiver the receiver to disconnect
/frameworks/base/obex/javax/obex/
H A DObexTransport.java66 void disconnect() throws IOException; method in interface:ObexTransport
H A DClientSession.java225 public HeaderSet disconnect(HeaderSet header) throws IOException { method in class:ClientSession
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMapRfcommTransport.java55 public void disconnect() throws IOException { method in class:BluetoothMapRfcommTransport
H A DBluetoothMasObexClientSession.java94 // this will "disconnect" to cleanup
105 disconnect();
122 disconnect();
128 private void disconnect() { method in class:BluetoothMasObexClientSession.ClientThread
130 mSession.disconnect(null);
/frameworks/opt/bluetooth/src/android/bluetooth/client/pbap/
H A DBluetoothPbapObexTransport.java72 public void disconnect() throws IOException { method in class:BluetoothPbapObexTransport
/frameworks/volley/src/test/java/com/android/volley/mock/
H A DMockHttpURLConnection.java65 public void disconnect() { method in class:MockHttpURLConnection
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DLocalBluetoothProfile.java40 boolean disconnect(BluetoothDevice device); method in interface:LocalBluetoothProfile
H A DOppProfile.java47 public boolean disconnect(BluetoothDevice device) { method in class:OppProfile
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DBluetoothController.java35 void disconnect(CachedBluetoothDevice device); method in interface:BluetoothController
/frameworks/av/camera/
H A DCameraBase.cpp119 void CameraBase<TCam, TCamTraits>::disconnect() function in class:android::CameraBase
121 ALOGV("%s: disconnect", __FUNCTION__);
123 mCamera->disconnect();
127 ALOGV("%s: disconnect (done)", __FUNCTION__);
/frameworks/av/media/libmedia/
H A DIEffect.cpp103 void disconnect() function in class:android::BpEffect
105 ALOGV("disconnect");
187 disconnect();
H A DIMediaHTTPConnection.cpp82 virtual void disconnect() { function in struct:android::BpMediaHTTPConnection
H A Dmediametadataretriever.cpp80 disconnect();
84 void MediaMetadataRetriever::disconnect() function in class:android::MediaMetadataRetriever
86 ALOGV("disconnect");
94 retriever->disconnect();
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp57 disconnect();
73 void MetadataRetrieverClient::disconnect() function in class:android::MetadataRetrieverClient
75 ALOGV("disconnect from pid %d", mPid);
/frameworks/av/media/libstagefright/http/
H A DMediaHTTP.cpp71 void MediaHTTP::disconnect() { function in class:android::MediaHTTP
76 mHTTPConnection->disconnect();
125 // disconnect. NuCachedSource2 relies on this.
/frameworks/av/media/libstagefright/httplive/
H A DHTTPDownloader.cpp50 void HTTPDownloader::disconnect() { function in class:android::HTTPDownloader
55 mHTTPDataSource->disconnect();
215 mHTTPDataSource->disconnect();
231 mHTTPDataSource->disconnect();
/frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/core/
H A DUiAutomationShellWrapper.java62 public void disconnect() { method in class:UiAutomationShellWrapper
66 mUiAutomation.disconnect();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dpSink.java221 * A2DP profile. The API will automatically disconnect connected
265 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
280 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothA2dpSink
281 if (DBG) log("disconnect(" + device + ")");
285 return mService.disconnect(device);
H A DBluetoothPbap.java268 public boolean disconnect() { method in class:BluetoothPbap
269 if (DBG) log("disconnect()");
272 mService.disconnect();
H A DBluetoothSap.java259 * Initiate disconnect.
266 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothSap
267 if (DBG) log("disconnect(" + device + ")");
271 return mService.disconnect(device);
/frameworks/base/core/java/com/android/internal/os/
H A DInstallerConnection.java32 * disconnect cycles.
138 disconnect();
144 public void disconnect() { method in class:InstallerConnection
161 disconnect();
180 disconnect();
205 disconnect();
/frameworks/base/media/java/android/media/
H A DMediaScannerConnection.java47 private boolean mConnected; // true if connect() has been called since last disconnect()
128 public void disconnect() { method in class:MediaScannerConnection
138 Log.v(TAG, "disconnect failed: " + ex);
207 mConnection.disconnect();
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DSurfaceTextureTarget.java173 // down the graph on purpose, such as in the disconnect call.
185 public synchronized void disconnect(FilterContext context) { method in class:SurfaceTextureTarget
186 if (mLogVerbose) Log.v(TAG, "disconnect");
188 Log.d(TAG, "SurfaceTexture is already null. Nothing to disconnect.");
194 // surfacetexture was valid. For example, the disconnect can be called before

Completed in 649 milliseconds

12345