/system/connectivity/shill/ |
D | key_file_store_unittest.cc | 505 TEST_F(KeyFileStoreTest, GetStringList) { in TEST_F() argument 531 EXPECT_TRUE(store_->GetStringList(kGroup, kKeyValues, &value)); in TEST_F() 537 EXPECT_TRUE(store_->GetStringList(kGroup, kKeyEmptyValue, &value)); in TEST_F() 542 EXPECT_TRUE(store_->GetStringList(kGroup, kKeyValueEmpty, &value)); in TEST_F() 547 EXPECT_TRUE(store_->GetStringList(kGroup, kKeyEmpty, &value)); in TEST_F() 550 EXPECT_TRUE(store_->GetStringList(kGroup, kKeyValueEmptyValue, &value)); in TEST_F() 556 EXPECT_FALSE(store_->GetStringList("unknown-string-lists", in TEST_F() 559 EXPECT_FALSE(store_->GetStringList(kGroup, "some-key", &value)); in TEST_F() 560 EXPECT_TRUE(store_->GetStringList(kGroup, kKeyValues, nullptr)); in TEST_F() 788 EXPECT_TRUE(store_->GetStringList(kGroupB, kKeyStringList, &value)); in TEST_F() [all …]
|
D | json_store_unittest.cc | 152 EXPECT_TRUE(store_->GetStringList("group_a", "knob_1", &value_from_store)); in TEST_F() 202 EXPECT_FALSE(store_->GetStringList("group_a", "string_list_knob", nullptr)); in TEST_F() 212 EXPECT_FALSE(store_->GetStringList("group_a", "string_list_knob", nullptr)); in TEST_F() 229 EXPECT_TRUE(store_->GetStringList("group_a", "string_list_knob", nullptr)); in TEST_F() 284 EXPECT_FALSE(store_->GetStringList("group_a", "knob_1", nullptr)); in TEST_F() 298 EXPECT_FALSE(store_->GetStringList("group_a", "knob_1", nullptr)); in TEST_F() 311 EXPECT_FALSE(store_->GetStringList("group_a", "knob_1", nullptr)); in TEST_F() 324 EXPECT_FALSE(store_->GetStringList("group_a", "knob_1", nullptr)); in TEST_F() 353 EXPECT_FALSE(store_->GetStringList("group_a", "knob_1", nullptr)); in TEST_F()
|
D | stub_storage.h | 94 bool GetStringList(const std::string& group, in GetStringList() function
|
D | mock_store.h | 76 MOCK_CONST_METHOD3(GetStringList, bool(const std::string& group,
|
D | store_interface.h | 144 virtual bool GetStringList(const std::string& group,
|
D | key_file_store.h | 79 bool GetStringList(const std::string& group,
|
D | fake_store.h | 77 bool GetStringList(const std::string& group,
|
D | json_store.h | 78 bool GetStringList(const std::string& group,
|
D | fake_store.cc | 191 bool FakeStore::GetStringList( in GetStringList() function in shill::FakeStore
|
D | key_file_store.cc | 333 bool KeyFileStore::GetStringList(const string& group, in GetStringList() function in shill::KeyFileStore
|
D | eap_credentials.cc | 309 storage->GetStringList(id, kStorageEapCACertPEM, &ca_cert_pem_); in Load()
|
D | json_store.cc | 586 bool JsonStore::GetStringList( in GetStringList() function in shill::JsonStore
|
/system/connectivity/shill/wifi/ |
D | wifi_provider_unittest.cc | 155 bool GetStringList(const std::string& /*group*/, in GetStringList() function in shill::WiFiProviderTest 401 GetStringList( in LoadConnectCountByFrequency() 404 WillOnce(Invoke(this, &WiFiProviderTest::GetStringList)); in LoadConnectCountByFrequency() 407 GetStringList( in LoadConnectCountByFrequency() 410 WillOnce(Invoke(this, &WiFiProviderTest::GetStringList)); in LoadConnectCountByFrequency() 413 GetStringList( in LoadConnectCountByFrequency() 416 WillOnce(Invoke(this, &WiFiProviderTest::GetStringList)); in LoadConnectCountByFrequency() 419 GetStringList( in LoadConnectCountByFrequency() 422 WillOnce(Invoke(this, &WiFiProviderTest::GetStringList)); in LoadConnectCountByFrequency() 1581 EXPECT_CALL(default_profile_storage_, GetStringList(WiFiProvider::kStorageId, in TEST_F() [all …]
|
D | wifi_provider.cc | 404 if (!storage->GetStringList(kStorageId, freq_string, &frequencies)) { in LoadAndFixupServiceEntries()
|
/system/connectivity/shill/vpn/ |
D | vpn_driver_unittest.cc | 200 EXPECT_CALL(storage, GetStringList(kStorageID, _, _)) in TEST_F() 205 EXPECT_CALL(storage, GetStringList(_, kOTPProperty, _)).Times(0); in TEST_F() 207 EXPECT_CALL(storage, GetStringList(kStorageID, kEapCaCertPemProperty, _)) in TEST_F()
|
D | vpn_driver.cc | 74 if (storage->GetStringList(storage_id, property, &value)) { in Load()
|