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

  /packages/apps/Settings/src/com/android/settings/bluetooth/
CachedBluetoothDevice.java 54 private final List<LocalBluetoothProfile> mProfiles =
57 // List of profiles that were previously in mProfiles, but have been removed
124 if (!mProfiles.contains(profile)) {
126 mProfiles.add(profile);
137 mProfiles.remove(profile);
156 for (LocalBluetoothProfile profile : mProfiles) {
186 if (mProfiles.isEmpty()) {
199 for (LocalBluetoothProfile profile : mProfiles) {
221 for (LocalBluetoothProfile profile : mProfiles) {
398 for (LocalBluetoothProfile profile : mProfiles) {
    [all...]
DockService.java 112 private LocalBluetoothProfile[] mProfiles;
596 mProfiles = new LocalBluetoothProfile[numOfProfiles];
605 mProfiles[0] = mProfileManager.getHeadsetProfile();
606 mProfiles[1] = mProfileManager.getA2dpProfile();
612 mCheckedItems[0] = mProfiles[0].isPreferred(device);
613 mCheckedItems[1] = mProfiles[1].isPreferred(device);
621 mProfiles[0] = mProfileManager.getA2dpProfile();
626 mCheckedItems[0] = mProfiles[0].isPreferred(device);
757 if (device == null || mProfiles == null || mCheckedItems == null
795 for (int i = 0; i < mProfiles.length; i++)
    [all...]

Completed in 34 milliseconds