Home
last modified time | relevance | path

Searched refs:UpdateDNSServers (Results 1 – 9 of 9) sorted by relevance

/system/connectivity/shill/
Dmock_ipconfig.h42 MOCK_METHOD1(UpdateDNSServers,
Dmock_connection.h53 MOCK_METHOD1(UpdateDNSServers,
Dconnection.h105 virtual void UpdateDNSServers(const std::vector<std::string>& dns_servers);
170 FRIEND_TEST(ConnectionTest, UpdateDNSServers);
Dipconfig.h163 virtual void UpdateDNSServers(const std::vector<std::string>& dns_servers);
Dipconfig.cc192 void IPConfig::UpdateDNSServers(const std::vector<std::string>& dns_servers) { in UpdateDNSServers() function in shill::IPConfig
Ddevice.cc637 ip6config_->UpdateDNSServers(addresses_str); in OnIPv6DnsServerAddressesChanged()
658 ip6config_->UpdateDNSServers(vector<string>()); in IPv6DNSServerExpired()
967 ipconfig->UpdateDNSServers(servers); in PrependDNSServersIntoIPConfig()
1529 ipconfig_->UpdateDNSServers(dns_servers); in SwitchDNSServers()
1532 connection_->UpdateDNSServers(dns_servers); in SwitchDNSServers()
Ddevice_unittest.cc2421 EXPECT_CALL(*connection_.get(), UpdateDNSServers(_)).Times(0); in TEST_F()
2422 EXPECT_CALL(*ipconfig, UpdateDNSServers(_)).Times(0); in TEST_F()
2435 EXPECT_CALL(*connection_.get(), UpdateDNSServers(_)).Times(0); in TEST_F()
2436 EXPECT_CALL(*ipconfig, UpdateDNSServers(_)).Times(0); in TEST_F()
2471 EXPECT_CALL(*ipconfig, UpdateDNSServers(_)).Times(1); in TEST_F()
2472 EXPECT_CALL(*connection_.get(), UpdateDNSServers(_)).Times(1); in TEST_F()
2491 EXPECT_CALL(*connection_.get(), UpdateDNSServers(_)).Times(0); in TEST_F()
2492 EXPECT_CALL(*ipconfig, UpdateDNSServers(_)).Times(0); in TEST_F()
2517 EXPECT_CALL(*connection_.get(), UpdateDNSServers(_)).Times(1); in TEST_F()
2518 EXPECT_CALL(*ipconfig, UpdateDNSServers(_)).Times(1); in TEST_F()
Dconnection_unittest.cc674 TEST_F(ConnectionTest, UpdateDNSServers) { in TEST_F() argument
685 connection_->UpdateDNSServers(dns_servers); in TEST_F()
699 connection_->UpdateDNSServers(dns_servers); in TEST_F()
Dconnection.cc345 void Connection::UpdateDNSServers(const vector<string>& dns_servers) { in UpdateDNSServers() function in shill::Connection