Searched refs:mProfileConnectionState (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
H A DAdapterProperties.java51 private HashMap<Integer, Pair<Integer, Integer>> mProfileConnectionState; field in class:AdapterProperties
79 if (mProfileConnectionState ==null) {
80 mProfileConnectionState = new HashMap<Integer, Pair<Integer, Integer>>();
82 mProfileConnectionState.clear();
89 if (mProfileConnectionState != null) {
90 mProfileConnectionState.clear();
91 mProfileConnectionState = null;
328 Pair<Integer, Integer> p = mProfileConnectionState.get(profile);
433 // mProfileConnectionState is a hashmap -
452 Pair<Integer, Integer> stateNumDev = mProfileConnectionState
[all...]
/packages/apps/Settings/src/com/android/settings/bluetooth/
H A DCachedBluetoothDevice.java53 private HashMap<LocalBluetoothProfile, Integer> mProfileConnectionState; field in class:CachedBluetoothDevice
134 mProfileConnectionState.put(profile, newProfileState);
168 mProfileConnectionState = new HashMap<LocalBluetoothProfile, Integer>();
339 if (mProfileConnectionState == null ||
340 mProfileConnectionState.get(profile) == null) {
343 mProfileConnectionState.put(profile, state);
345 return mProfileConnectionState.get(profile);
354 mProfileConnectionState.put(profile, BluetoothProfile.STATE_DISCONNECTED);

Completed in 50 milliseconds