/system/connectivity/shill/ |
D | json_store_unittest.cc | 135 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()
|
D | key_file_store_unittest.cc | 459 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()
|
D | stub_storage.h | 84 bool GetUint64(const std::string& group, in GetUint64() function
|
D | mock_store.h | 70 MOCK_CONST_METHOD3(GetUint64, bool(const std::string& group,
|
D | store_interface.h | 130 virtual bool GetUint64(const std::string& group,
|
D | key_file_store.h | 73 bool GetUint64(const std::string& group,
|
D | fake_store.h | 71 bool GetUint64(const std::string& group,
|
D | json_store.h | 72 bool GetUint64(const std::string& group,
|
D | fake_store.cc | 181 bool FakeStore::GetUint64( in GetUint64() function in shill::FakeStore
|
D | key_file_store.cc | 301 bool KeyFileStore::GetUint64( in GetUint64() function in shill::KeyFileStore
|
D | json_store.cc | 576 bool JsonStore::GetUint64( in GetUint64() function in shill::JsonStore
|
D | device.cc | 479 if (storage->GetUint64(id, kStorageReceiveByteCount, &profile_byte_count)) { in Load() 482 if (storage->GetUint64(id, kStorageTransmitByteCount, &profile_byte_count)) { in Load()
|
D | device_unittest.cc | 574 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/ |
D | wifi_service.cc | 393 storage->GetUint64(id, kStorageRoamThreshold, &stored_roam_threshold_temp); in Load()
|
D | wifi_service_unittest.cc | 2277 EXPECT_CALL(mock_store, GetUint64(StrEq(kStorageId), in TEST_F()
|