Lines Matching refs:testMap1
107 BpfMap<uint32_t, uint32_t> testMap1; in TEST_F() local
108 checkMapInvalid(testMap1); in TEST_F()
144 BpfMap<uint32_t, uint32_t> testMap1; in TEST_F() local
145 ASSERT_RESULT_OK(testMap1.resetMap(BPF_MAP_TYPE_HASH, TEST_MAP_SIZE, BPF_F_NO_PREALLOC)); in TEST_F()
147 testMap2 = std::move(testMap1); in TEST_F()
149 checkMapInvalid(testMap1); in TEST_F()
156 BpfMap<uint32_t, uint32_t> testMap1; in TEST_F() local
157 ASSERT_RESULT_OK(testMap1.resetMap(BPF_MAP_TYPE_HASH, TEST_MAP_SIZE, BPF_F_NO_PREALLOC)); in TEST_F()
158 ASSERT_EQ(0, bpfFdPin(testMap1.getMap(), PINNED_MAP_PATH)); in TEST_F()
160 checkMapValid(testMap1); in TEST_F()
166 writeToMapAndCheck(testMap1, key, value); in TEST_F()