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.java107 private final ArrayList<ProfileService> mRunningProfiles = new ArrayList<>(); field in AdapterService
283 if (mRunningProfiles.contains(profile)) { in processProfileServiceStateChanged()
287 mRunningProfiles.add(profile); in processProfileServiceStateChanged()
291 && mRegisteredProfiles.size() == mRunningProfiles.size()) { in processProfileServiceStateChanged()
305 if (!mRunningProfiles.contains(profile)) { in processProfileServiceStateChanged()
309 mRunningProfiles.remove(profile); in processProfileServiceStateChanged()
311 if ((mRunningProfiles.size() == 1 && (GattService.class.getSimpleName() in processProfileServiceStateChanged()
312 .equals(mRunningProfiles.get(0).getName())))) { in processProfileServiceStateChanged()
314 } else if (mRunningProfiles.size() == 0) { in processProfileServiceStateChanged()
601 if (supportedProfileServices.length == 1 && (mRunningProfiles.size() == 1 in stopProfileServices()
[all …]