Home
last modified time | relevance | path

Searched refs:GetUint64 (Results 1 – 15 of 15) sorted by relevance

/system/connectivity/shill/
Djson_store_unittest.cc135 EXPECT_TRUE(store_->GetUint64("group_a", "knob_1", &value_from_store)); in TEST_F()
201 EXPECT_FALSE(store_->GetUint64("group_a", "uint64_knob", nullptr)); in TEST_F()
211 EXPECT_FALSE(store_->GetUint64("group_a", "uint64_knob", nullptr)); in TEST_F()
228 EXPECT_TRUE(store_->GetUint64("group_a", "uint64_knob", nullptr)); in TEST_F()
283 EXPECT_FALSE(store_->GetUint64("group_a", "knob_1", nullptr)); in TEST_F()
297 EXPECT_FALSE(store_->GetUint64("group_a", "knob_1", nullptr)); in TEST_F()
310 EXPECT_FALSE(store_->GetUint64("group_a", "knob_1", nullptr)); in TEST_F()
338 EXPECT_FALSE(store_->GetUint64("group_a", "knob_1", nullptr)); in TEST_F()
352 EXPECT_FALSE(store_->GetUint64("group_a", "knob_1", nullptr)); in TEST_F()
Dkey_file_store_unittest.cc459 TEST_F(KeyFileStoreTest, GetUint64) { in TEST_F() argument
478 EXPECT_TRUE(store_->GetUint64(kGroup, kKeyGood, &value)); in TEST_F()
483 EXPECT_FALSE(store_->GetUint64(kGroup, kKeyBad, &value)); in TEST_F()
484 EXPECT_FALSE(store_->GetUint64(kGroup, "invalid", &value)); in TEST_F()
485 EXPECT_FALSE(store_->GetUint64("invalid", kKeyGood, &value)); in TEST_F()
487 EXPECT_TRUE(store_->GetUint64(kGroup, kKeyGood, nullptr)); in TEST_F()
Dstub_storage.h84 bool GetUint64(const std::string& group, in GetUint64() function
Dmock_store.h70 MOCK_CONST_METHOD3(GetUint64, bool(const std::string& group,
Dstore_interface.h130 virtual bool GetUint64(const std::string& group,
Dkey_file_store.h73 bool GetUint64(const std::string& group,
Dfake_store.h71 bool GetUint64(const std::string& group,
Djson_store.h72 bool GetUint64(const std::string& group,
Dfake_store.cc181 bool FakeStore::GetUint64( in GetUint64() function in shill::FakeStore
Dkey_file_store.cc301 bool KeyFileStore::GetUint64( in GetUint64() function in shill::KeyFileStore
Djson_store.cc576 bool JsonStore::GetUint64( in GetUint64() function in shill::JsonStore
Ddevice.cc479 if (storage->GetUint64(id, kStorageReceiveByteCount, &profile_byte_count)) { in Load()
482 if (storage->GetUint64(id, kStorageTransmitByteCount, &profile_byte_count)) { in Load()
Ddevice_unittest.cc574 EXPECT_CALL(storage, GetUint64(id, Device::kStorageReceiveByteCount, _)) in TEST_F()
576 EXPECT_CALL(storage, GetUint64(id, Device::kStorageTransmitByteCount, _)) in TEST_F()
2585 EXPECT_CALL(storage_, GetUint64(id, Device::kStorageReceiveByteCount, _)) in SetUp()
2588 EXPECT_CALL(storage_, GetUint64(id, Device::kStorageTransmitByteCount, _)) in SetUp()
/system/connectivity/shill/wifi/
Dwifi_service.cc393 storage->GetUint64(id, kStorageRoamThreshold, &stored_roam_threshold_temp); in Load()
Dwifi_service_unittest.cc2277 EXPECT_CALL(mock_store, GetUint64(StrEq(kStorageId), in TEST_F()