Searched defs:disconnect (Results 1 - 25 of 45) sorted by path

12

/frameworks/av/camera/
H A DCamera.cpp97 // We don't need to call disconnect() here because if the CameraService
100 // call disconnect() here if we are in the same process as mediaserver,
136 void Camera::disconnect() function in class:android::Camera
138 ALOGV("disconnect");
140 mCamera->disconnect();
H A DICamera.cpp62 // disconnect from camera service
63 void disconnect() function in class:android::BpCamera
65 ALOGV("disconnect");
282 disconnect();
/frameworks/av/media/libmedia/
H A DIEffect.cpp103 void disconnect() function in class:android::BpEffect
105 ALOGV("disconnect");
184 disconnect();
H A DIMediaMetadataRetriever.cpp77 // disconnect from media metadata retriever service
78 void disconnect() function in class:android::BpMediaMetadataRetriever
178 disconnect();
H A DIMediaPlayer.cpp70 // disconnect from media player service
71 void disconnect() function in class:android::BpMediaPlayer
353 disconnect();
H A Dmediametadataretriever.cpp77 disconnect();
81 void MediaMetadataRetriever::disconnect() function in class:android::MediaMetadataRetriever
83 ALOGV("disconnect");
91 retriever->disconnect();
H A Dmediaplayer.cpp71 disconnect();
75 void MediaPlayer::disconnect() function in class:android::MediaPlayer
77 ALOGV("disconnect");
86 p->disconnect();
134 p->disconnect();
/frameworks/av/media/libmediaplayerservice/
H A DMediaPlayerService.cpp511 disconnect();
515 void MediaPlayerService::Client::disconnect() function in class:android::MediaPlayerService::Client
517 ALOGV("disconnect(%d) from pid %d", mConnId, mPid);
H A DMetadataRetrieverClient.cpp56 disconnect();
72 void MetadataRetrieverClient::disconnect() function in class:android::MetadataRetrieverClient
74 ALOGV("disconnect from pid %d", mPid);
/frameworks/av/media/libstagefright/
H A DOMXClient.cpp337 void OMXClient::disconnect() { function in class:android::OMXClient
/frameworks/av/media/libstagefright/chromium_http/
H A DChromiumHTTPDataSource.cpp45 disconnect();
132 void ChromiumHTTPDataSource::disconnect() { function in class:android::ChromiumHTTPDataSource
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp89 void LiveSession::disconnect() { function in class:android::LiveSession
93 mHTTPDataSource->disconnect();
/frameworks/av/media/libstagefright/rtsp/
H A DARTSPConnection.cpp74 void ARTSPConnection::disconnect(const sp<AMessage> &reply) { function in class:android::ARTSPConnection
H A DMyHandler.h176 void disconnect() { function in struct:android::MyHandler
484 mConn->disconnect(reply);
619 mConn->disconnect(reply);
650 mConn->disconnect(reply);
774 mConn->disconnect(reply);
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp8294 size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast) function in class:android::AudioFlinger::EffectModule
8296 ALOGV("disconnect() %p handle %p", this, handle);
8953 disconnect(false);
9013 void AudioFlinger::EffectHandle::disconnect() function in class:android::AudioFlinger::EffectHandle
9015 disconnect(true);
9018 void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast) function in class:android::AudioFlinger::EffectHandle
9020 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
9025 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {
/frameworks/av/services/camera/libcameraservice/
H A DCamera2Client.cpp142 disconnect();
370 void Camera2Client::disconnect() { function in class:android::Camera2Client
375 // Allow both client and the media server to disconnect at all times
413 mDevice->disconnect();
417 CameraService::Client::disconnect();
H A DCamera2Device.cpp47 disconnect();
139 status_t Camera2Device::disconnect() { function in class:android::Camera2Device
1160 ALOGE("%s: Unable to disconnect stream %d from native window (error %d %s)",
H A DCameraClient.cpp100 // client will not be accessed from callback. should unlock to prevent dead-lock in disconnect
105 disconnect();
137 ALOGE("attempt to use a camera after disconnect() (pid %d)", getCallingPid());
215 void CameraClient::disconnect() { function in class:android::CameraClient
217 LOG1("disconnect E (pid %d)", callingPid);
220 // Allow both client and the media server to disconnect at all times
222 ALOGW("different client - don't disconnect");
231 // Make sure disconnect() is done once and once only, whether it is called
253 CameraService::Client::disconnect();
255 LOG1("disconnect
[all...]
H A DCameraService.cpp254 // Client::~Client() -> disconnect() -> removeClient().
372 mSoundPlayer[i]->disconnect();
413 // unconditionally disconnect. function is idempotent
414 Client::disconnect();
440 void CameraService::Client::disconnect() { function in class:android::CameraService::Client
581 cameraClient->disconnect();
/frameworks/base/core/java/android/accessibilityservice/
H A DUiTestAutomationBridge.java225 public void disconnect() { method in class:UiTestAutomationBridge
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothA2dp.java195 * A2DP profile. The API will automatically disconnect connected
239 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
254 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothA2dp
255 if (DBG) log("disconnect(" + device + ")");
259 return mService.disconnect(device);
H A DBluetoothHeadset.java313 * headset/handsfree profile. The API will automatically disconnect connected
357 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
372 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothHeadset
373 if (DBG) log("disconnect(" + device + ")");
377 return mService.disconnect(device);
H A DBluetoothInputDevice.java89 * Return codes for the connect and disconnect Bluez / Dbus calls.
315 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
330 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothInputDevice
331 if (DBG) log("disconnect(" + device + ")");
334 return mService.disconnect(device);
H A DBluetoothPan.java96 * Return codes for the connect and disconnect Bluez / Dbus calls.
236 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
251 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothPan
252 if (DBG) log("disconnect(" + device + ")");
256 return mPanService.disconnect(device);
H A DBluetoothPbap.java264 public boolean disconnect() { method in class:BluetoothPbap
265 if (DBG) log("disconnect()");
268 mService.disconnect();

Completed in 329 milliseconds

12