Home
last modified time | relevance | path

Searched refs:connectedDevices (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/core/java/android/bluetooth/
DBluetoothManager.java100 List<BluetoothDevice> connectedDevices = getConnectedDevices(profile); in getConnectionState() local
101 for (BluetoothDevice connectedDevice : connectedDevices) { in getConnectionState()
130 List<BluetoothDevice> connectedDevices = new ArrayList<BluetoothDevice>(); in getConnectedDevices() local
135 if (iGatt == null) return connectedDevices; in getConnectedDevices()
137 connectedDevices = iGatt.getDevicesMatchingConnectionStates( in getConnectedDevices()
143 return connectedDevices; in getConnectedDevices()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DBluetoothTile.java189 List<CachedBluetoothDevice> connectedDevices = mController.getConnectedDevices(); in getSecondaryLabel() local
190 if (enabled && connected && !connectedDevices.isEmpty()) { in getSecondaryLabel()
191 if (connectedDevices.size() > 1) { in getSecondaryLabel()
195 connectedDevices.size(), in getSecondaryLabel()
196 connectedDevices.size()); in getSecondaryLabel()
199 CachedBluetoothDevice lastDevice = connectedDevices.get(0); in getSecondaryLabel()
380 int connectedDevices = 0; in updateItems() local
401 items.add(connectedDevices, item); in updateItems()
402 connectedDevices++; in updateItems()
406 items.add(connectedDevices, item); in updateItems()
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/bluetooth/
DMapClientProfile.java122 List<BluetoothDevice> connectedDevices = getConnectedDevices(); in connect()
123 if (connectedDevices != null && connectedDevices.contains(device)) { in connect()