Searched defs:disconnect (Results 76 - 100 of 117) sorted by relevance

12345

/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3Stream.cpp430 ALOGE("%s: Stream %d: Unable to disconnect to tear down buffers: %s (%d)",
659 status_t Camera3Stream::disconnect() { function in class:android::camera3::Camera3Stream
/frameworks/base/core/java/android/bluetooth/
H A DBluetoothHeadset.java363 * headset/handsfree profile. The API will automatically disconnect connected
407 * {@link #STATE_DISCONNECTED}. If the disconnect is initiated by the
422 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothHeadset
423 if (DBG) log("disconnect(" + device + ")");
427 return mService.disconnect(device);
H A DBluetoothHeadsetClient.java301 * AG call handling feature: merge calls and disconnect from multi party
470 * second connection, this implementation will disconnect already connected
497 * @param device a remote device we want disconnect
503 public boolean disconnect(BluetoothDevice device) { method in class:BluetoothHeadsetClient
504 if (DBG) log("disconnect(" + device + ")");
508 return mService.disconnect(device);
859 * That means connect other calls and disconnect.
/frameworks/base/core/java/android/hardware/camera2/legacy/
H A DCameraDeviceUserShim.java387 public void disconnect() { method in class:CameraDeviceUserShim
389 Log.d(TAG, "disconnect called.");
393 Log.w(TAG, "Cannot disconnect, device has already been closed.");
/frameworks/base/core/tests/bluetoothtests/src/android/bluetooth/
H A DBluetoothTestUtils.java977 * @param profile The profile to disconnect. One of {@link BluetoothProfile#A2DP},
1010 assertTrue(((BluetoothA2dp)proxy).disconnect(device));
1012 assertTrue(((BluetoothHeadset)proxy).disconnect(device));
1014 assertTrue(((BluetoothInputDevice)proxy).disconnect(device));
1181 * {@link #incomingPanDisconnection(BluetoothAdapter, BluetoothDevice)} to either disconnect
1186 * @param disconnect Whether the method should connect or verify.
1189 BluetoothDevice device, boolean disconnect) {
1194 if (disconnect) {
1223 assertTrue(mPan.disconnect(device));
1188 disconnectFromRemoteOrVerifyConnectNap(BluetoothAdapter adapter, BluetoothDevice device, boolean disconnect) argument
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java211 public void disconnect() { method in class:MediaBrowser
217 mServiceBinder.disconnect(mServiceCallbacks);
227 Log.d(TAG, "disconnect...");
234 * calling disconnect on the service, because we only try to do that in the
237 * Everywhere that calls this EXCEPT for disconnect() should follow it with
485 // Process is crashing. We will disconnect, and upon reconnect we will
524 // Process is crashing. We will disconnect, and upon reconnect we will
557 // Check to make sure there hasn't been a disconnect or a different
591 // Process is crashing. We will disconnect, and upon reconnect we will
608 // Check to make sure there hasn't been a disconnect o
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
H A DCachedBluetoothDevice.java42 * functionality that can be performed on the device (connect, pair, disconnect,
143 // Device doesn't support NAP, so remove PanProfile on disconnect
153 Log.d(TAG, "Removing PanProfile from device after NAP disconnect");
172 public void disconnect() { method in class:CachedBluetoothDevice
174 disconnect(profile);
178 // disconnect PBAP connection when HF connection is brought down
182 PbapProfile.disconnect(mDevice);
186 public void disconnect(LocalBluetoothProfile profile) { method in class:CachedBluetoothDevice
187 if (profile.disconnect(mDevice)) {
/frameworks/native/libs/gui/
H A DBufferQueueProducer.cpp276 // If we disconnect and reconnect quickly, we can be in a state where
1116 // Set up a death notification so that we can disconnect
1147 status_t BufferQueueProducer::disconnect(int api, DisconnectMode mode) { function in class:android::BufferQueueProducer
1149 BQ_LOGV("disconnect: api %d", api);
1166 // It's not really an error to disconnect after the surface has
1173 // If we're asked to disconnect the currently connected api but
1206 BQ_LOGE("disconnect: still connected to another API "
1212 BQ_LOGE("disconnect: unknown API %d", api);
1446 // this callback upon disconnect. It's therefore safe to read mConnectedApi
1449 disconnect(ap
[all...]
H A DIGraphicBufferProducer.cpp273 virtual status_t disconnect(int api, DisconnectMode mode) { function in class:android::BpGraphicBufferProducer
626 status_t res = disconnect(api, mode);
/frameworks/native/services/surfaceflinger/
H A DDisplayDevice.cpp180 void DisplayDevice::disconnect(HWComposer& hwc) { function in class:DisplayDevice
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DVirtualDisplaySurface.cpp114 mSource[SOURCE_SCRATCH]->disconnect(NATIVE_WINDOW_API_EGL);
566 status_t VirtualDisplaySurface::disconnect(int api, DisconnectMode mode) { function in class:android::VirtualDisplaySurface
567 return mSource[SOURCE_SINK]->disconnect(api, mode);
/frameworks/support/media-compat/java/android/support/v4/media/
H A DMediaBrowserServiceCompat.java426 mServiceBinderImpl.disconnect(new ServiceCallbacksCompat(msg.replyTo));
612 public void disconnect(final ServiceCallbacks callbacks) { method in class:MediaBrowserServiceCompat.ServiceBinderImpl
H A DMediaBrowserCompat.java129 public void disconnect() { method in class:MediaBrowserCompat
130 mImpl.disconnect();
747 void disconnect(); method in interface:MediaBrowserCompat.MediaBrowserImpl
867 public void disconnect() { method in class:MediaBrowserCompat.MediaBrowserImplBase
873 mServiceBinderWrapper.disconnect(mCallbacksMessenger);
883 Log.d(TAG, "disconnect...");
890 * calling disconnect on the service, because we only try to do that in the
893 * Everywhere that calls this EXCEPT for disconnect() should follow it with
970 // Process is crashing. We will disconnect, and upon reconnect we will
1006 // Process is crashing. We will disconnect, an
1342 public void disconnect() { method in class:MediaBrowserCompat.MediaBrowserImplApi21
1723 void disconnect(Messenger callbacksMessenger) throws RemoteException { method in class:MediaBrowserCompat.ServiceBinderWrapper
[all...]
/frameworks/support/v7/mediarouter/src/android/support/v7/media/
H A DRegisteredMediaRouteProvider.java101 disconnect();
124 disconnect();
218 disconnect();
261 disconnect();
284 private void disconnect() { method in class:RegisteredMediaRouteProvider
/frameworks/av/services/camera/libcameraservice/api1/
H A DCamera2Client.cpp140 disconnect();
374 binder::Status Camera2Client::disconnect() { function in class:android::Camera2Client
379 // Allow both client and the cameraserver to disconnect at all times
388 * disconnect() cannot call any methods that might need to promote a
389 * wp<Camera2Client>, since disconnect can be called from the destructor, at
433 mDevice->disconnect();
437 CameraService::Client::disconnect();
H A DCameraClient.cpp107 disconnect();
152 ALOGE("attempt to use a camera after disconnect() (pid %d)", getCallingPid());
233 binder::Status CameraClient::disconnect() { function in class:android::CameraClient
235 LOG1("disconnect E (pid %d)", callingPid);
239 // Allow both client and the cameraserver to disconnect at all times
241 ALOGW("different client - don't disconnect");
245 // Make sure disconnect() is done once and once only, whether it is called
270 CameraService::Client::disconnect();
272 LOG1("disconnect X (pid %d)", callingPid);
316 // disconnect her
[all...]
/frameworks/base/services/core/java/com/android/server/display/
H A DWifiDisplayController.java276 disconnect();
339 disconnect();
543 private void disconnect() { method in class:WifiDisplayController
584 // Step 2. Before we try to connect to a new device, disconnect from the old one.
606 Slog.i(TAG, "Failed to disconnect from Wifi display: "
659 // Step 4. If we wanted to disconnect, or we're updating after starting an
765 disconnect();
837 disconnect();
878 disconnect();
940 disconnect();
[all...]
/frameworks/base/telecomm/java/android/telecom/
H A DConnectionService.java72 * receives call-commands such as answer, reject, hold and disconnect.
189 public void disconnect(String callId) {
351 disconnect((String) msg.obj);
828 private void disconnect(String callId) { method in class:ConnectionService
829 Log.d(this, "disconnect %s", callId);
831 findConnectionForAction(callId, "disconnect").onDisconnect();
833 findConferenceForAction(callId, "disconnect").onDisconnect();
/frameworks/opt/bluetooth/src/android/bluetooth/client/map/
H A DBluetoothMasClient.java56 * @see #disconnect()
632 public void disconnect() { method in class:BluetoothMasClient
650 disconnect();
/frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/
H A DWifiStateMachineTest.java1009 public void disconnect() throws Exception { method in class:WifiStateMachineTest
/frameworks/av/media/libmediaplayerservice/nuplayer/
H A DGenericSource.cpp561 void NuPlayer::GenericSource::disconnect() { function in class:android::NuPlayer::GenericSource
570 // disconnect data source
572 static_cast<NuCachedSource2 *>(dataSource.get())->disconnect();
575 static_cast<HTTPBase *>(httpSource.get())->disconnect();
/frameworks/av/media/libstagefright/httplive/
H A DLiveSession.cpp512 status_t LiveSession::disconnect() { function in class:android::LiveSession
1586 bool disconnect = false; local
1589 disconnect = true;
1598 fetcher->pauseAsync(threshold, disconnect);
H A DPlaylistFetcher.cpp453 void PlaylistFetcher::setStoppingThreshold(float thresholdRatio, bool disconnect) { argument
458 if (disconnect) {
459 mHTTPDownloader->disconnect();
463 void PlaylistFetcher::resetStoppingThreshold(bool disconnect) { argument
468 if (disconnect) {
469 mHTTPDownloader->disconnect();
530 float thresholdRatio, bool disconnect) {
531 setStoppingThreshold(thresholdRatio, disconnect);
725 resetStoppingThreshold(false /* disconnect */);
744 resetStoppingThreshold(true /* disconnect */);
529 pauseAsync( float thresholdRatio, bool disconnect) argument
[all...]
/frameworks/av/media/libstagefright/rtsp/
H A DMyHandler.h217 void disconnect() { function in struct:android::MyHandler
601 mConn->disconnect(reply);
646 mConn->disconnect(reply);
787 mConn->disconnect(reply);
820 mConn->disconnect(reply);
947 mConn->disconnect(reply);
/frameworks/av/services/audioflinger/
H A DEffects.cpp194 size_t AudioFlinger::EffectModule::disconnect(EffectHandle *handle, bool unpinIfLast) function in class:android::AudioFlinger::EffectModule
196 ALOGV("disconnect() %p handle %p", this, handle);
1131 disconnect(false);
1226 void AudioFlinger::EffectHandle::disconnect() function in class:android::AudioFlinger::EffectHandle
1228 disconnect(true);
1231 void AudioFlinger::EffectHandle::disconnect(bool unpinIfLast) function in class:android::AudioFlinger::EffectHandle
1233 ALOGV("disconnect(%s)", unpinIfLast ? "true" : "false");
1238 if ((mEffect->disconnect(this, unpinIfLast) == 0) && mEnabled) {

Completed in 953 milliseconds

12345