Home
last modified time | relevance | path

Searched refs:kInt32Key (Results 1 – 2 of 2) sorted by relevance

/system/connectivity/shill/
Dkey_value_store_unittest.cc589 static const char kInt32Key[] = "Int32Key"; in TEST_F() local
616 store.SetInt(kInt32Key, kInt32Value); in TEST_F()
635 EXPECT_EQ(kInt32Value, dict[kInt32Key].Get<int32_t>()); in TEST_F()
659 static const char kInt32Key[] = "Int32Key"; in TEST_F() local
684 dict[kInt32Key] = brillo::Any(kInt32Value); in TEST_F()
707 EXPECT_TRUE(store.ContainsInt(kInt32Key)); in TEST_F()
708 EXPECT_EQ(kInt32Value, store.GetInt(kInt32Key)); in TEST_F()
Dproperty_store_unittest.cc745 const string kInt32Key = "int32p"; in TEST_F() local
766 store.RegisterInt32(kInt32Key, &int32_value); in TEST_F()
803 dict.insert(std::make_pair(kInt32Key, brillo::Any(new_int32_value))); in TEST_F()
825 EXPECT_EQ(new_int32_value, result_dict[kInt32Key].Get<int32_t>()); in TEST_F()