Home
last modified time | relevance | path

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

/test/vts-testcase/kernel/fuse_bpf/
Dvts_kernel_fuse_bpf_test.py35 first_api_level = 0
37 first_api_level = int(out_api)
41 self.assertTrue(first_api_level < 34 or out_running.strip() == "true",
/test/vts-testcase/kernel/encryption/
Dmetadata_encryption_tests.cpp164 int first_api_level; in SetUp() local
165 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in SetUp()
167 ASSERT_LE(first_api_level, __ANDROID_API_Q__); in SetUp()
311 int first_api_level; in TEST() local
312 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in TEST()
313 ASSERT_LE(first_api_level, __ANDROID_API_Q__) in TEST()
Dutils.cpp129 bool GetFirstApiLevel(int *first_api_level) { in GetFirstApiLevel() argument
130 *first_api_level = in GetFirstApiLevel()
132 if (*first_api_level == 0) { in GetFirstApiLevel()
136 GTEST_LOG_(INFO) << "ro.product.first_api_level = " << *first_api_level; in GetFirstApiLevel()
Dvts_kernel_encryption.h105 bool GetFirstApiLevel(int *first_api_level);
Dfile_based_encryption_tests.cpp513 int first_api_level; in SetUp() local
514 ASSERT_TRUE(GetFirstApiLevel(&first_api_level)); in SetUp()
516 ASSERT_LE(first_api_level, __ANDROID_API_Q__); in SetUp()
1368 int first_api_level; in DeviceUsesFBE() local
1369 if (!GetFirstApiLevel(&first_api_level)) return true; in DeviceUsesFBE()
1370 if (first_api_level >= __ANDROID_API_Q__) { in DeviceUsesFBE()
/test/vts-testcase/kernel/checkpoint/
Dvts_kernel_checkpoint_test.py110 first_api_level = 0
112 first_api_level = int(out)
115 self.assertTrue(first_api_level < 29 or self.isCheckpoint_,
/test/vts/tests/fastboot_getvar/src/com/android/tests/
DFastbootGetvarUserspaceTest.java177 String first_api_level = in testFirstApiLevel() local
179 CLog.d("first_api_level: '%s'", first_api_level); in testFirstApiLevel()
181 int api_level = Integer.parseInt(first_api_level); in testFirstApiLevel()
184 fail("Failed to parse first-api-level: " + first_api_level); in testFirstApiLevel()