HomeSort by relevance Sort by last modified time
    Searched refs:mProfileConnectionState (Results 1 - 2 of 2) sorted by null

  /packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
AdapterProperties.java 50 private HashMap<Integer, Pair<Integer, Integer>> mProfileConnectionState;
71 if (mProfileConnectionState ==null) {
72 mProfileConnectionState = new HashMap<Integer, Pair<Integer, Integer>>();
74 mProfileConnectionState.clear();
81 if (mProfileConnectionState != null) {
82 mProfileConnectionState.clear();
83 mProfileConnectionState = null;
279 Pair<Integer, Integer> p = mProfileConnectionState.get(profile);
384 // mProfileConnectionState is a hashmap -
403 Pair<Integer, Integer> stateNumDev = mProfileConnectionState.get(profile)
    [all...]
  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java 53 private HashMap<LocalBluetoothProfile, Integer> mProfileConnectionState;
127 mProfileConnectionState.put(profile, newProfileState);
156 mProfileConnectionState = new HashMap<LocalBluetoothProfile, Integer>();
327 if (mProfileConnectionState == null ||
328 mProfileConnectionState.get(profile) == null) {
331 mProfileConnectionState.put(profile, state);
333 return mProfileConnectionState.get(profile);
342 mProfileConnectionState.put(profile, BluetoothProfile.STATE_DISCONNECTED);

Completed in 2058 milliseconds