Searched refs:testMap (Results 1 – 4 of 4) sorted by relevance
/packages/modules/Connectivity/staticlibs/native/bpf_headers/ |
D | BpfMapTest.cpp | 116 BpfMap<uint32_t, uint32_t> testMap; in TEST_F() local 117 ASSERT_RESULT_OK(testMap.resetMap(BPF_MAP_TYPE_HASH, TEST_MAP_SIZE, BPF_F_NO_PREALLOC)); in TEST_F() 120 writeToMapAndCheck(testMap, key, value_write); in TEST_F() 121 Result<uint32_t> value_read = testMap.readValue(key); in TEST_F() 123 Result<uint32_t> key_read = testMap.getFirstKey(); in TEST_F() 125 ASSERT_RESULT_OK(testMap.deleteValue(key)); in TEST_F() 126 ASSERT_GT(0, findMapEntry(testMap.getMap(), &key, &value_read)); in TEST_F() 131 BpfMap<uint32_t, uint32_t> testMap; in TEST_F() local 132 ASSERT_RESULT_OK(testMap.resetMap(BPF_MAP_TYPE_HASH, TEST_MAP_SIZE, BPF_F_NO_PREALLOC)); in TEST_F() 135 writeToMapAndCheck(testMap, key, value_write); in TEST_F() [all …]
|
/packages/modules/AdServices/adservices/tests/unittest/ui/src/com/android/adservices/service/ui/data/ |
D | UxStatesManagerTest.java | 99 Map<String, Boolean> testMap = new HashMap<>(); in setUpTestMap() local 100 testMap.put("TRUE_FLAG_KEY", true); in setUpTestMap() 101 testMap.put("FALSE_FLAG_KEY", false); in setUpTestMap() 102 doReturn(testMap).when(mMockFlags).getUxFlags(); in setUpTestMap() 217 Map<String, Boolean> testMap = new HashMap<String, Boolean>(); in isEnrolledUserTest_gaNoticeDisplayed() local 218 testMap.put(KEY_IS_U18_SUPERVISED_ACCOUNT_ENABLED, false); in isEnrolledUserTest_gaNoticeDisplayed() 219 doReturn(testMap).when(mMockFlags).getUxFlags(); in isEnrolledUserTest_gaNoticeDisplayed() 231 Map<String, Boolean> testMap = new HashMap<String, Boolean>(); in isEnrolledUserTest_betaNoticeDisplayed() local 232 testMap.put(KEY_IS_U18_SUPERVISED_ACCOUNT_ENABLED, false); in isEnrolledUserTest_betaNoticeDisplayed() 233 doReturn(testMap).when(mMockFlags).getUxFlags(); in isEnrolledUserTest_betaNoticeDisplayed() [all …]
|
/packages/modules/Uwb/service/tests/src/com/android/server/uwb/profile/ |
D | ProfileManagerTest.java | 112 Map<UUID, ServiceProfileInfo> testMap = new HashMap<>(); in testLoadServiceProfile() local 113 testMap.put(serviceProfileInfo.serviceInstanceID, serviceProfileInfo); in testLoadServiceProfile() 117 mProfileManager.loadServiceProfile(testMap); in testLoadServiceProfile()
|
/packages/modules/Connectivity/staticlibs/tests/unit/src/com/android/net/module/util/ |
D | CollectionUtilsTest.kt | 137 fun testMap() { in testMap() method
|