Home
last modified time | relevance | path

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

/cts/hostsidetests/security/src/android/security/cts/
DMetadataEncryptionTest.java73 final int firstApiLevel = Math.min(PropertyUtil.getFirstApiLevel(mDevice), in assumeSecurityModelCompat() local
75 if (firstApiLevel >= 31) { in assumeSecurityModelCompat()
DPerfEventParanoidTest.java92 final int firstApiLevel = Math.min(PropertyUtil.getFirstApiLevel(mDevice), in assumeSecurityModelCompat() local
94 if (firstApiLevel >= ANDROID_S_API_LEVEL) { in assumeSecurityModelCompat()
DKernelConfigTest.java416 final int firstApiLevel = Math.min(PropertyUtil.getFirstApiLevel(mDevice), in assumeSecurityModelCompat() local
418 if (firstApiLevel >= 31) { in assumeSecurityModelCompat()
DSELinuxHostTest.java189 final int firstApiLevel = Math.min(PropertyUtil.getFirstApiLevel(mDevice), in assumeSecurityModelCompat() local
191 if (firstApiLevel >= 31) { in assumeSecurityModelCompat()
/cts/tests/tests/security/src/android/security/cts/
DVerifiedBootTest.java46 final int firstApiLevel = in setUp() local
48 if (firstApiLevel >= Build.VERSION_CODES.S) { in setUp()
DEncryptionTest.java54 final int firstApiLevel = in setUp() local
56 if (firstApiLevel >= Build.VERSION_CODES.S) { in setUp()
DFileIntegrityManagerTest.java96 final int firstApiLevel = in setUp() local
98 if (firstApiLevel >= Build.VERSION_CODES.S) { in setUp()
/cts/tests/tests/hardware/src/android/hardware/cts/
DSecurityModelFeatureTest.java51 final int firstApiLevel = Math.min(getFirstApiLevel(), getVendorApiLevel()); in setUp() local
53 firstApiLevel >= VERSION_CODES.S); in setUp()
/cts/common/device-side/util-axt/src/com/android/compatibility/common/util/
DPropertyUtil.java89 int firstApiLevel = getPropertyInt(FIRST_API_LEVEL); in getFirstApiLevel() local
90 return (firstApiLevel == INT_VALUE_IF_UNSET) ? Build.VERSION.SDK_INT : firstApiLevel; in getFirstApiLevel()
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DDirectBootHostTest.java169 final int firstApiLevel = in assumeSupportedDevice() local
171 if (firstApiLevel >= 31) { in assumeSupportedDevice()
DApkVerityInstallTest.java449 final int firstApiLevel = in assumeSecurityModelCompat() local
451 if (firstApiLevel >= 31) { in assumeSecurityModelCompat()
/cts/hostsidetests/statsdatom/src/android/cts/statsdatom/performancehintmanager/
DPerformanceHintManagerStatsTests.java116 final int firstApiLevel = Integer.parseInt( in testCreateHintSessionStatsdApp() local
138 if (firstApiLevel < androidSApiLevel && data.size() == 0) { in testCreateHintSessionStatsdApp()
166 final int firstApiLevel = Integer.parseInt( in testCreateHintSessionStatsdGame() local
188 if (firstApiLevel < androidSApiLevel && data.size() == 0) { in testCreateHintSessionStatsdGame()
/cts/tests/framework/base/biometrics/src/android/server/biometrics/util/
DUtils.java304 int firstApiLevel = SystemProperties.getInt("ro.product.first_api_level", 0); in isFirstApiLevel29orGreater() local
305 if (firstApiLevel >= 29) { in isFirstApiLevel29orGreater()