Home
last modified time | relevance | path

Searched refs:ip6config (Results 1 – 3 of 3) sorted by relevance

/system/connectivity/shill/
Ddevice_unittest.cc1386 scoped_refptr<MockIPConfig> ip6config = in TEST_F() local
1388 device_->ip6config_ = ip6config; in TEST_F()
1397 EXPECT_CALL(*ip6config, UpdateLeaseExpirationTime(_)).Times(1); in TEST_F()
1398 EXPECT_CALL(*ip6config, ResetLeaseExpirationTime()).Times(0); in TEST_F()
1408 EXPECT_CALL(*ip6config, UpdateLeaseExpirationTime(_)).Times(0); in TEST_F()
1409 EXPECT_CALL(*ip6config, ResetLeaseExpirationTime()).Times(1); in TEST_F()
1731 EXPECT_EQ(kExpectedServers, device_->ip6config()->properties().dns_servers); in TEST_F()
Ddevice.cc1544 if (!ipconfig() && !ip6config()) { in TimeToNextDHCPLeaseRenewal()
1552 if (ip6config()) { in TimeToNextDHCPLeaseRenewal()
1553 ip6config()->TimeToLeaseExpiry(&time_to_ipv6_lease_expiry); in TimeToNextDHCPLeaseRenewal()
Ddevice.h245 virtual const IPConfigRefPtr& ip6config() const { return ip6config_; } in ip6config() function