Searched refs:disconnect (Results 76 - 100 of 147) sorted by relevance

123456

/frameworks/base/core/java/android/app/
H A DUiAutomation.java222 public void disconnect() { method in class:UiAutomation
226 "Cannot call disconnect() while connecting!");
233 mUiAutomationConnection.disconnect();
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java202 * A2DP profile. The API will automatically disconnect connected
246 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
261 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothA2dp
262 if (DBG) log("disconnect(" + device + ")");
266 return mService.disconnect(device);
H A DBluetoothMap.java218 * Initiate disconnect.
224 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothMap
225 if (DBG) log("disconnect(" + device + ")");
229 return mService.disconnect(device);
H A DBluetoothInputDevice.java89 * Return codes for the connect and disconnect Bluez / Dbus calls.
321 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
336 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothInputDevice
337 if (DBG) log("disconnect(" + device + ")");
340 return mService.disconnect(device);
H A DBluetoothHeadset.java325 * headset/handsfree profile. The API will automatically disconnect connected
369 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
384 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothHeadset
385 if (DBG) log("disconnect(" + device + ")");
389 return mService.disconnect(device);
H A DBluetoothTetheringDataTracker.java139 mBluetoothPan.disconnect(device);
/frameworks/base/wifi/java/android/net/wifi/
H A DWifiManager.java709 public boolean disconnect() { method in class:WifiManager
711 mService.disconnect();
2177 sAsyncChannel.disconnect();
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java982 * @param profile The profile to disconnect. One of {@link BluetoothProfile#A2DP},
1015 assertTrue(((BluetoothA2dp)proxy).disconnect(device));
1017 assertTrue(((BluetoothHeadset)proxy).disconnect(device));
1019 assertTrue(((BluetoothInputDevice)proxy).disconnect(device));
1186 * {@link #incomingPanDisconnection(BluetoothAdapter, BluetoothDevice)} to either disconnect
1191 * @param disconnect Whether the method should connect or verify.
1194 BluetoothDevice device, boolean disconnect) {
1199 if (disconnect) {
1228 assertTrue(mPan.disconnect(device));
1193 disconnectFromRemoteOrVerifyConnectNap(BluetoothAdapter adapter, BluetoothDevice device, boolean disconnect) argument
/frameworks/av/camera/
H A DICamera.cpp62 // disconnect from camera service
63 void disconnect() function in class:android::BpCamera
65 ALOGV("disconnect");
284 disconnect();
/frameworks/native/libs/gui/
H A DIGraphicBufferProducer.cpp157 virtual status_t disconnect(int api) { function in class:android::BpGraphicBufferProducer
258 status_t res = disconnect(api);
H A DSurface.cpp81 Surface::disconnect(NATIVE_WINDOW_API_CPU);
418 return disconnect(api);
510 int Surface::disconnect(int api) { function in class:android::Surface
512 ALOGV("Surface::disconnect");
515 int err = mGraphicBufferProducer->disconnect(api);
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.cpp446 status_t VirtualDisplaySurface::disconnect(int api) { function in class:android::VirtualDisplaySurface
447 return mSource[SOURCE_SINK]->disconnect(api);
/frameworks/av/cmds/stagefright/
H A Drecordvideo.cpp309 client.disconnect();
/frameworks/av/include/media/
H A Dmediaplayer.h199 void disconnect();
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DHTTPLiveSource.cpp64 mLiveSession->disconnect();
/frameworks/base/media/lib/java/com/android/media/remotedisplay/
H A DRemoteDisplayProvider.java190 * Called when the system would like to disconnect from a display.
345 public void disconnect(String id) { method in class:RemoteDisplayProvider.ProviderStub
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectViewer.java77 mScannerConnection.disconnect();
/frameworks/base/media/tests/omxjpegdecoder/
H A Domx_jpeg_decoder.cpp96 mClient.disconnect();
/frameworks/base/packages/VpnDialogs/src/com/android/vpndialogs/
H A DManageDialog.java102 mAlertParams.mNeutralButtonText = getText(R.string.disconnect);
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h202 void disconnect() { function in struct:android::MyHandler
567 mConn->disconnect(reply);
612 mConn->disconnect(reply);
749 mConn->disconnect(reply);
782 mConn->disconnect(reply);
909 mConn->disconnect(reply);
/frameworks/av/services/audioflinger/
H A DEffects.cpp190 size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast) function in class:android::AudioFlinger::EffectModule
192 ALOGV("disconnect() %p handle %p", this, handle);
939 disconnect(false);
1029 void AudioFlinger::EffectHandle::disconnect() function in class:android::AudioFlinger::EffectHandle
1031 disconnect(true);
1034 void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast) function in class:android::AudioFlinger::EffectHandle
1036 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1041 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
/frameworks/av/media/libmedia/
H A DIMediaPlayer.cpp70 // disconnect from media player service
71 void disconnect() function in class:android::BpMediaPlayer
353 disconnect();
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.h47 virtual status_t disconnect();
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Device.h75 virtual status_t disconnect();
H A DCamera3Stream.cpp301 status_t Camera3Stream::disconnect() { function in class:android::camera3::Camera3Stream

Completed in 585 milliseconds

123456