Home
last modified time | relevance | path

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

/cts/hostsidetests/devicepolicy/app/LauncherTests/src/com/android/cts/launchertests/
DLauncherAppsTests.java154 final List<UserHandle> profiles = mLauncherApps.getProfiles(); in testGetProfiles_fromMainProfile() local
155 assertEquals(2, profiles.size()); in testGetProfiles_fromMainProfile()
156 assertTrue(profiles.contains(android.os.Process.myUserHandle())); in testGetProfiles_fromMainProfile()
158 profiles); in testGetProfiles_fromMainProfile() local
162 final List<UserHandle> profiles = mLauncherApps.getProfiles(); in testGetProfiles_fromManagedProfile() local
163 assertEquals(1, profiles.size()); in testGetProfiles_fromManagedProfile()
164 assertEquals(android.os.Process.myUserHandle(), profiles.get(0)); in testGetProfiles_fromManagedProfile()
/cts/hostsidetests/compilation/assets/
DREADME.txt9 $ adb shell ls -l /data/misc/profiles/cur/0/android.compilation.cts/primary.prof
11 $ adb pull /data/misc/profiles/cur/0/android.compilation.cts/primary.prof ./
/cts/tests/tests/media/src/android/media/cts/
DMediaCodecListTest.java437 List<Integer> profiles = new ArrayList<>(); in testFindDecoderWithAacProfile() local
438 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectLC); in testFindDecoderWithAacProfile()
439 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectHE); in testFindDecoderWithAacProfile()
440 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectHE_PS); in testFindDecoderWithAacProfile()
442 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectELD); in testFindDecoderWithAacProfile()
443 for (int profile : profiles) { in testFindDecoderWithAacProfile()
454 List<Integer> profiles = new ArrayList<>(); in testFindEncoderWithAacProfile() local
456 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectLC); in testFindEncoderWithAacProfile()
458 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectHE); in testFindEncoderWithAacProfile()
459 profiles.add(MediaCodecInfo.CodecProfileLevel.AACObjectELD); in testFindEncoderWithAacProfile()
[all …]
/cts/tests/tests/telephony/current/src/android/telephony/euicc/cts/
DEuiccProfileInfoTest.java235 EuiccProfileInfo[] profiles = EuiccProfileInfo.CREATOR.newArray(123); in testCreatorNewArray() local
236 assertEquals(123, profiles.length); in testCreatorNewArray()
/cts/tests/media/src/android/mediav2/cts/
DEncoderProfileLevelTest.java683 int[] profiles = mProfileMap.get(mMime); in testValidateProfileLevel() local
684 assertTrue("no profile entry found for mime" + mMime, profiles != null); in testValidateProfileLevel()
703 for (int profile : profiles) { in testValidateProfileLevel()
/cts/tests/tests/appwidget/src/android/appwidget/cts/
DAppWidgetTest.java141 List<UserHandle> profiles = userManager.getUserProfiles(); in testGetAppInstalledProvidersForCurrentUserNewAllProfiles() local
142 final int profileCount = profiles.size(); in testGetAppInstalledProvidersForCurrentUserNewAllProfiles()
144 UserHandle profile = profiles.get(i); in testGetAppInstalledProvidersForCurrentUserNewAllProfiles()