Home
last modified time | relevance | path

Searched refs:IsDHCPv6EnabledForDevice (Results 1 – 8 of 8) sorted by relevance

/system/connectivity/shill/
Dmock_manager.h104 MOCK_CONST_METHOD1(IsDHCPv6EnabledForDevice,
Dmanager_unittest.cc5138 EXPECT_FALSE(manager()->IsDHCPv6EnabledForDevice("eth0")); in TEST_F()
5139 EXPECT_FALSE(manager()->IsDHCPv6EnabledForDevice("eth1")); in TEST_F()
5140 EXPECT_FALSE(manager()->IsDHCPv6EnabledForDevice("wlan0")); in TEST_F()
5145 EXPECT_TRUE(manager()->IsDHCPv6EnabledForDevice("eth0")); in TEST_F()
5146 EXPECT_FALSE(manager()->IsDHCPv6EnabledForDevice("eth1")); in TEST_F()
5147 EXPECT_FALSE(manager()->IsDHCPv6EnabledForDevice("wlan0")); in TEST_F()
5151 EXPECT_TRUE(manager()->IsDHCPv6EnabledForDevice("eth0")); in TEST_F()
5152 EXPECT_TRUE(manager()->IsDHCPv6EnabledForDevice("eth1")); in TEST_F()
5153 EXPECT_FALSE(manager()->IsDHCPv6EnabledForDevice("wlan0")); in TEST_F()
5157 EXPECT_TRUE(manager()->IsDHCPv6EnabledForDevice("eth0")); in TEST_F()
[all …]
Dmanager.h536 virtual bool IsDHCPv6EnabledForDevice(const std::string& device_name) const;
Ddevice.cc784 if (manager_->IsDHCPv6EnabledForDevice(link_name_)) { in AcquireIPConfigWithLeaseName()
Ddevice_unittest.cc420 EXPECT_CALL(manager, IsDHCPv6EnabledForDevice(kDeviceName)) in TEST_F()
463 EXPECT_CALL(manager, IsDHCPv6EnabledForDevice(kDeviceName)) in TEST_F()
Dmanager.cc1188 bool Manager::IsDHCPv6EnabledForDevice(const string& device_name) const { in IsDHCPv6EnabledForDevice() function in shill::Manager
/system/connectivity/shill/pppoe/
Dpppoe_service.cc249 if (manager()->IsDHCPv6EnabledForDevice(ppp_device_->link_name())) { in OnPPPConnected()
Dpppoe_service_unittest.cc157 EXPECT_CALL(manager_, IsDHCPv6EnabledForDevice(StrEq(kLinkName))) in TEST_F()