Home
last modified time | relevance | path

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

/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/
DAdapterService.java134 private final ArrayList<ProfileService> mRunningProfiles = new ArrayList<>(); field in AdapterService
326 if (mRunningProfiles.contains(profile)) { in processProfileServiceStateChanged()
330 mRunningProfiles.add(profile); in processProfileServiceStateChanged()
334 && mRegisteredProfiles.size() == mRunningProfiles.size()) { in processProfileServiceStateChanged()
349 if (!mRunningProfiles.contains(profile)) { in processProfileServiceStateChanged()
353 mRunningProfiles.remove(profile); in processProfileServiceStateChanged()
355 if ((mRunningProfiles.size() == 1 && (GattService.class.getSimpleName() in processProfileServiceStateChanged()
356 .equals(mRunningProfiles.get(0).getName())))) { in processProfileServiceStateChanged()
358 } else if (mRunningProfiles.size() == 0) { in processProfileServiceStateChanged()
639 if (supportedProfileServices.length == 1 && (mRunningProfiles.size() == 1 in stopProfileServices()
[all …]