Home
last modified time | relevance | path

Searched refs:GetStringList (Results 1 – 16 of 16) sorted by relevance

/system/connectivity/shill/
Dkey_file_store_unittest.cc505 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 …]
Djson_store_unittest.cc152 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()
Dstub_storage.h94 bool GetStringList(const std::string& group, in GetStringList() function
Dmock_store.h76 MOCK_CONST_METHOD3(GetStringList, bool(const std::string& group,
Dstore_interface.h144 virtual bool GetStringList(const std::string& group,
Dkey_file_store.h79 bool GetStringList(const std::string& group,
Dfake_store.h77 bool GetStringList(const std::string& group,
Djson_store.h78 bool GetStringList(const std::string& group,
Dfake_store.cc191 bool FakeStore::GetStringList( in GetStringList() function in shill::FakeStore
Dkey_file_store.cc333 bool KeyFileStore::GetStringList(const string& group, in GetStringList() function in shill::KeyFileStore
Deap_credentials.cc309 storage->GetStringList(id, kStorageEapCACertPEM, &ca_cert_pem_); in Load()
Djson_store.cc586 bool JsonStore::GetStringList( in GetStringList() function in shill::JsonStore
/system/connectivity/shill/wifi/
Dwifi_provider_unittest.cc155 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 …]
Dwifi_provider.cc404 if (!storage->GetStringList(kStorageId, freq_string, &frequencies)) { in LoadAndFixupServiceEntries()
/system/connectivity/shill/vpn/
Dvpn_driver_unittest.cc200 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()
Dvpn_driver.cc74 if (storage->GetStringList(storage_id, property, &value)) { in Load()