Searched refs:activeDevice (Results 1 – 4 of 4) sorted by relevance
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/ |
D | BluetoothEventManager.java | 233 private void dispatchActiveDeviceChanged(CachedBluetoothDevice activeDevice, in dispatchActiveDeviceChanged() argument 235 mDeviceManager.onActiveDeviceChanged(activeDevice, bluetoothProfile); in dispatchActiveDeviceChanged() 238 callback.onActiveDeviceChanged(activeDevice, bluetoothProfile); in dispatchActiveDeviceChanged() 243 private void dispatchAclStateChanged(CachedBluetoothDevice activeDevice, in dispatchAclStateChanged() argument 247 callback.onAclConnectionStateChanged(activeDevice, state); in dispatchAclStateChanged() 458 CachedBluetoothDevice activeDevice = mDeviceManager.findDevice(device); in onReceive() local 470 dispatchActiveDeviceChanged(activeDevice, bluetoothProfile); in onReceive() 492 final CachedBluetoothDevice activeDevice = mDeviceManager.findDevice(device); in onReceive() local 493 if (activeDevice == null) { in onReceive() 510 dispatchAclStateChanged(activeDevice, state); in onReceive()
|
D | BluetoothCallback.java | 104 default void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, int bluetoothProfile) {} in onActiveDeviceChanged() argument
|
D | CachedBluetoothDeviceManager.java | 229 public synchronized void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, in onActiveDeviceChanged() argument 232 boolean isActive = Objects.equals(cachedDevice, activeDevice); in onActiveDeviceChanged()
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/media/ |
D | BluetoothMediaManager.java | 282 public void onActiveDeviceChanged(CachedBluetoothDevice activeDevice, int bluetoothProfile) { in onActiveDeviceChanged() argument 284 + activeDevice + ", profile : " + bluetoothProfile); in onActiveDeviceChanged() 287 if (activeDevice != null) { in onActiveDeviceChanged() 288 dispatchConnectedDeviceChanged(MediaDeviceUtils.getId(activeDevice)); in onActiveDeviceChanged() 296 final String id = activeDevice == null in onActiveDeviceChanged() 299 : MediaDeviceUtils.getId(activeDevice); in onActiveDeviceChanged()
|