Home
last modified time | relevance | path

Searched refs:first_api_level (Results 1 – 9 of 9) sorted by relevance

/test/vts-testcase/kernel/encryption/
Dmetadata_encryption_tests.cpp165 int first_api_level; in SetUp() local
166 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in SetUp()
168 ASSERT_LE(first_api_level, __ANDROID_API_Q__); in SetUp()
310 int first_api_level; in TEST() local
311 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in TEST()
312 ASSERT_LE(first_api_level, __ANDROID_API_Q__) in TEST()
Dutils.cpp99 bool GetFirstApiLevel(int *first_api_level) { in GetFirstApiLevel() argument
100 *first_api_level = in GetFirstApiLevel()
102 if (*first_api_level == 0) { in GetFirstApiLevel()
106 GTEST_LOG_(INFO) << "ro.product.first_api_level = " << *first_api_level; in GetFirstApiLevel()
Dfile_based_encryption_tests.cpp375 int first_api_level; in SetUp() local
376 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in SetUp()
378 ASSERT_LE(first_api_level, __ANDROID_API_Q__); in SetUp()
1026 int first_api_level; in TEST() local
1027 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in TEST()
1028 ASSERT_LE(first_api_level, __ANDROID_API_P__) in TEST()
Dvts_kernel_encryption.h91 bool GetFirstApiLevel(int *first_api_level);
/test/vts/testcases/host/fastboot_getvar/src/com/android/tests/
DFastbootGetvarUserspaceTest.java145 String first_api_level = mDevice.getFastbootVariable("first-api-level"); in testFirstApiLevel() local
146 CLog.d("first_api_level: '%s'", first_api_level); in testFirstApiLevel()
148 int api_level = Integer.parseInt(first_api_level); in testFirstApiLevel()
151 fail("Failed to parse first-api-level: " + first_api_level); in testFirstApiLevel()
/test/vts-testcase/kernel/checkpoint/
Dvts_kernel_checkpoint_test.py111 first_api_level = int(out)
112 self.assertTrue(first_api_level < 29 or self.isCheckpoint_,
DVtsKernelCheckpointTest.py107 first_api_level = int(result)
108 asserts.assertTrue(first_api_level < 29 or self.isCheckpoint_,
/test/vts-testcase/security/avb/
DVtsSecurityAvbTest.cpp501 int first_api_level = GetFirstApiLevel(); in ShouldSkipGkiTest() local
502 GTEST_LOG_(INFO) << "First API level is " << first_api_level; in ShouldSkipGkiTest()
503 if (first_api_level < R_API_LEVEL) { in ShouldSkipGkiTest()
1028 int first_api_level = GetFirstApiLevel(); in TEST() local
1029 GTEST_LOG_(INFO) << "First API level is " << first_api_level; in TEST()
1030 if (first_api_level < S_API_LEVEL) { in TEST()
/test/vts/utils/python/controllers/
Dandroid_device.py517 def first_api_level(self): member in AndroidDevice
540 level_str = self.first_api_level