Lines Matching defs:mConnectedDevices

404     private final HashMap <Integer, String> mConnectedDevices = new HashMap <Integer, String>();
2885 synchronized (mConnectedDevices) {
2905 synchronized (mConnectedDevices) {
2982 synchronized (mConnectedDevices) {
2983 if (mConnectedDevices.containsKey(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP)) {
2985 mConnectedDevices.get(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP));
2992 synchronized (mConnectedDevices) {
2993 if (mConnectedDevices.containsKey(AudioSystem.DEVICE_IN_BLUETOOTH_A2DP)) {
2995 mConnectedDevices.get(AudioSystem.DEVICE_IN_BLUETOOTH_A2DP));
3429 synchronized (mConnectedDevices) {
3446 synchronized (mConnectedDevices) {
4262 synchronized (mConnectedDevices) {
4263 Set set = mConnectedDevices.entrySet();
4357 synchronized (mConnectedDevices) {
4476 // must be called synchronized on mConnectedDevices
4489 mConnectedDevices.put( new Integer(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP),
4497 // must be called synchronized on mConnectedDevices
4505 mConnectedDevices.remove(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP);
4516 // must be called synchronized on mConnectedDevices
4522 mConnectedDevices.remove(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP);
4529 // must be called synchronized on mConnectedDevices
4534 mConnectedDevices.put( new Integer(AudioSystem.DEVICE_IN_BLUETOOTH_A2DP),
4538 // must be called synchronized on mConnectedDevices
4543 mConnectedDevices.remove(AudioSystem.DEVICE_IN_BLUETOOTH_A2DP);
4546 // must be called synchronized on mConnectedDevices
4551 // must be called synchronized on mConnectedDevices
4569 synchronized (mConnectedDevices) {
4571 (mConnectedDevices.containsKey(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP) &&
4572 mConnectedDevices.get(AudioSystem.DEVICE_OUT_BLUETOOTH_A2DP).equals(address));
4632 synchronized (mConnectedDevices) {
4634 (mConnectedDevices.containsKey(AudioSystem.DEVICE_IN_BLUETOOTH_A2DP) &&
4635 mConnectedDevices.get(AudioSystem.DEVICE_IN_BLUETOOTH_A2DP).equals(address));
4659 synchronized (mConnectedDevices) {
4660 boolean isConnected = (mConnectedDevices.containsKey(device) &&
4661 (params.isEmpty() || mConnectedDevices.get(device).equals(params)));
4666 mConnectedDevices.get(device));
4667 mConnectedDevices.remove(device);
4673 mConnectedDevices.put(new Integer(device), params);
4688 // must be called before removing the device from mConnectedDevices
4693 for (int dev : mConnectedDevices.keySet()) {
4782 synchronized (mConnectedDevices) {