Searched refs:mProfileServices (Results 1 – 1 of 1) sorted by relevance
218 private final Map<Integer, ProfileServiceConnections> mProfileServices = new HashMap<>(); field in BluetoothManagerService1105 synchronized (mProfileServices) { in bindBluetoothProfileService()1106 ProfileServiceConnections psc = mProfileServices.get(new Integer(bluetoothProfile)); in bindBluetoothProfileService()1123 mProfileServices.put(new Integer(bluetoothProfile), psc); in bindBluetoothProfileService()1138 synchronized (mProfileServices) { in unbindBluetoothProfileService()1140 ProfileServiceConnections psc = mProfileServices.get(profile); in unbindBluetoothProfileService()1152 mProfileServices.remove(profile); in unbindBluetoothProfileService()1158 synchronized (mProfileServices) { in unbindAllBluetoothProfileServices()1159 for (Integer i : mProfileServices.keySet()) { in unbindAllBluetoothProfileServices()1160 ProfileServiceConnections psc = mProfileServices.get(i); in unbindAllBluetoothProfileServices()[all …]