Home
last modified time | relevance | path

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

/system/connectivity/shill/
Dkey_value_store_unittest.cc591 static const char kUint32Key[] = "Uint32Key"; in TEST_F() local
617 store.SetUint(kUint32Key, kUint32Value); in TEST_F()
636 EXPECT_EQ(kUint32Value, dict[kUint32Key].Get<uint32_t>()); in TEST_F()
661 static const char kUint32Key[] = "Uint32Key"; in TEST_F() local
685 dict[kUint32Key] = brillo::Any(kUint32Value); in TEST_F()
709 EXPECT_TRUE(store.ContainsUint(kUint32Key)); in TEST_F()
710 EXPECT_EQ(kUint32Value, store.GetUint(kUint32Key)); in TEST_F()
Dproperty_store_unittest.cc751 const string kUint32Key = "uint32p"; in TEST_F() local
772 store.RegisterUint32(kUint32Key, &uint32_value); in TEST_F()
810 dict.insert(std::make_pair(kUint32Key, brillo::Any(new_uint32_value))); in TEST_F()
832 EXPECT_EQ(new_uint32_value, result_dict[kUint32Key].Get<uint32_t>()); in TEST_F()