Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/android/app/src/com/android/bluetooth/btservice/
DAudioRoutingManager.java419 routingDevice.supportedProfiles = new HashSet<>(); in getAudioRoutingDevice()
423 routingDevice.supportedProfiles.add(BluetoothProfile.HEADSET); in getAudioRoutingDevice()
425 routingDevice.supportedProfiles.remove(BluetoothProfile.HEADSET); in getAudioRoutingDevice()
429 routingDevice.supportedProfiles.add(BluetoothProfile.A2DP); in getAudioRoutingDevice()
431 routingDevice.supportedProfiles.remove(BluetoothProfile.A2DP); in getAudioRoutingDevice()
435 routingDevice.supportedProfiles.add(BluetoothProfile.HEARING_AID); in getAudioRoutingDevice()
437 routingDevice.supportedProfiles.remove(BluetoothProfile.HEARING_AID); in getAudioRoutingDevice()
441 routingDevice.supportedProfiles.add(BluetoothProfile.LE_AUDIO); in getAudioRoutingDevice()
443 routingDevice.supportedProfiles.remove(BluetoothProfile.LE_AUDIO); in getAudioRoutingDevice()
489 !routingDevice.supportedProfiles.contains(BluetoothProfile.HEADSET); in activateDeviceProfile()
[all …]
/packages/apps/Launcher3/tests/multivalentTests/src/com/android/launcher3/widget/
DLauncherAppWidgetProviderInfoTest.java159 DeviceProfile dp = idp.supportedProfiles.get(0); in initSpans_minResizeWidthWithCellSpacingAndWidgetInset_shouldInitializeMinSpans()
181 DeviceProfile dp = idp.supportedProfiles.get(0); in initSpans_minResizeWidthWithCellSpacingAndNoWidgetInset_shouldInitializeMinSpans()
271 List<DeviceProfile> supportedProfiles = new ArrayList<>(idp.supportedProfiles); in createIDP() local
272 supportedProfiles.add(profile); in createIDP()
273 idp.supportedProfiles = Collections.unmodifiableList(supportedProfiles); in createIDP()
/packages/modules/Uwb/service/java/com/android/server/uwb/discovery/info/
DFiraProfileSupportInfo.java93 List<FiraProfile> supportedProfiles = new ArrayList<>(); in fromBytes() local
104 supportedProfiles.add(profile); in fromBytes()
113 return new FiraProfileSupportInfo(supportedProfiles.toArray(new FiraProfile[0])); in fromBytes()
/packages/apps/Launcher3/tests/src/com/android/launcher3/model/
DFolderIconLoadTest.kt179 LauncherAppState.getIDP(modelHelper.sandboxContext).supportedProfiles = in recreateSupportedDeviceProfiles()
180 LauncherAppState.getIDP(modelHelper.sandboxContext).supportedProfiles.map { in recreateSupportedDeviceProfiles()
/packages/apps/Launcher3/src/com/android/launcher3/
DInvariantDeviceProfile.java218 public List<DeviceProfile> supportedProfiles = Collections.EMPTY_LIST; field in InvariantDeviceProfile
471 supportedProfiles = Collections.unmodifiableList(localSupportedProfiles); in initGrid()
473 int numMinShownHotseatIconsForTablet = supportedProfiles in initGrid()
480 supportedProfiles in initGrid()
773 DeviceProfile bestMatch = supportedProfiles.get(0); in getBestMatch()
776 for (DeviceProfile profile : supportedProfiles) { in getBestMatch()
DModelCallbacks.kt284 LauncherAppState.getIDP(launcher).supportedProfiles.any(DeviceProfile::isTwoPanels) && in <lambda>()
/packages/apps/Launcher3/src/com/android/launcher3/widget/util/
DWidgetSizes.java50 for (DeviceProfile profile : LauncherAppState.getIDP(context).supportedProfiles) { in getWidgetSizesDp()
/packages/apps/Launcher3/src/com/android/launcher3/widget/
DLauncherAppWidgetProviderInfo.java108 for (DeviceProfile dp : idp.supportedProfiles) { in initSpans()
/packages/apps/Launcher3/src/com/android/launcher3/touch/
DItemClickHandler.java176 .supportedProfiles.stream().anyMatch(dp -> dp.isTwoPanels); in onClickAppPairIcon()
/packages/apps/Launcher3/src/com/android/launcher3/model/
DWorkspaceItemProcessor.kt560 for (deviceProfile in idp.supportedProfiles) { in logWidgetInfo()
DLoaderTask.java570 List<FolderGridOrganizer> verifiers = mApp.getInvariantDeviceProfile().supportedProfiles in processFolderItems()
/packages/modules/Bluetooth/framework/java/android/bluetooth/
DBluetoothAdapter.java2848 final ArrayList<Integer> supportedProfiles = new ArrayList<Integer>(); in getSupportedProfiles() local
2858 supportedProfiles.add(i); in getSupportedProfiles()
2864 supportedProfiles.add(BluetoothProfile.HEARING_AID); in getSupportedProfiles()
2872 return supportedProfiles; in getSupportedProfiles()