Home
last modified time | relevance | path

Searched refs:DisconnectDevice (Results 1 – 11 of 11) sorted by relevance

/packages/modules/Bluetooth/system/btif/avrcp/
Davrcp_service.h66 void DisconnectDevice(const RawAddress& bdaddr);
90 bool DisconnectDevice(const RawAddress& bdaddr) override;
Davrcp_service.cc519 void AvrcpService::DisconnectDevice(const RawAddress& bdaddr) { in DisconnectDevice() function in bluetooth::avrcp::AvrcpService
524 connection_handler_->DisconnectDevice(bdaddr); in DisconnectDevice()
641 bool AvrcpService::ServiceInterfaceImpl::DisconnectDevice(const RawAddress& bdaddr) { in DisconnectDevice() function in bluetooth::avrcp::AvrcpService::ServiceInterfaceImpl
645 base::BindOnce(&AvrcpService::DisconnectDevice, base::Unretained(instance_), bdaddr)); in DisconnectDevice()
/packages/modules/Bluetooth/system/profile/avrcp/
Dconnection_handler.h112 virtual bool DisconnectDevice(const RawAddress& bdaddr);
Dconnection_handler.cc172 bool ConnectionHandler::DisconnectDevice(const RawAddress& bdaddr) { in DisconnectDevice() function in bluetooth::avrcp::ConnectionHandler
400 DisconnectDevice(*peer_addr); in AcceptorControlCb()
/packages/modules/Bluetooth/system/include/hardware/avrcp/
Davrcp.h208 virtual bool DisconnectDevice(const RawAddress& bdaddr) = 0;
/packages/modules/Bluetooth/system/gd/rust/linux/stack/src/
Dlib.rs154 DisconnectDevice(BluetoothDevice), enumerator
520 Message::DisconnectDevice(addr) => { in dispatch()
Dbluetooth_media.rs1322 let _ = txl.send(Message::DisconnectDevice(device)).await; in disconnect_device()
/packages/modules/Bluetooth/system/gd/rust/topshim/btav/
Dbtav_shim.cc370 uint32_t AvrcpIntf::disconnect(RawAddress addr) { return intf_->DisconnectDevice(addr); } in disconnect()
/packages/modules/Bluetooth/system/bta/le_audio/
Dclient.cc829 DisconnectDevice(leAudioDevice, true, recovery); in OnLeAudioDeviceSetStateTimeout()
2140 DisconnectDevice(leAudioDevice, force_acl_disconnect); in Disconnect()
2146 DisconnectDevice(leAudioDevice); in Disconnect()
2153 DisconnectDevice(leAudioDevice); in Disconnect()
2165 void DisconnectDevice(LeAudioDevice* leAudioDevice, bool acl_force_disconnect = false, in DisconnectDevice() function in __anon432cb1ce0111::LeAudioClientImpl
2615 DisconnectDevice(leAudioDevice); in RegisterKnownNotifications()
3135 DisconnectDevice(leAudioDevice); in disconnectInvalidDevice()
3156 DisconnectDevice(leAudioDevice); in OnServiceSearchComplete()
5978 DisconnectDevice(device, force_acl_disconnect); in HandlePendingDeviceRemove()
5995 DisconnectDevice(leAudioDevice, force_acl_disconnect); in HandlePendingDeviceDisconnection()
/packages/modules/Bluetooth/system/btif/test/
Dbtif_rc_test.cc57 bool AvrcpService::ServiceInterfaceImpl::DisconnectDevice(const RawAddress& /*bdaddr*/) { in DisconnectDevice() function in bluetooth::avrcp::AvrcpService::ServiceInterfaceImpl
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_avrcp_target.cpp358 return sServiceInterface->DisconnectDevice(bdaddr) == true ? JNI_TRUE : JNI_FALSE; in disconnectDeviceNative()