Home
last modified time | relevance | path

Searched refs:Rebind (Results 1 – 6 of 6) sorted by relevance

/system/connectivity/shill/dbus/
Dchromeos_dhcpcd_proxy.cc42 void ChromeosDHCPCDProxy::Rebind(const string& interface) { in Rebind() function in shill::ChromeosDHCPCDProxy
45 if (!dhcpcd_proxy_->Rebind(interface, &error)) { in Rebind()
Dchromeos_dhcpcd_proxy.h37 void Rebind(const std::string& interface) override;
/system/connectivity/shill/dhcp/
Ddhcp_proxy_interface.h30 virtual void Rebind(const std::string& interface) = 0;
Dmock_dhcp_proxy.h34 MOCK_METHOD1(Rebind, void(const std::string& interface));
Ddhcp_config_unittest.cc337 EXPECT_CALL(*proxy_, Rebind(kDeviceName)).Times(1); in TEST_F()
348 EXPECT_CALL(*proxy_, Rebind(kDeviceName)).Times(1); in TEST_F()
362 EXPECT_CALL(*proxy_, Rebind(kDeviceName)).Times(1); in TEST_F()
429 EXPECT_CALL(*proxy_, Rebind(kDeviceName)).Times(1); in TEST_F()
Ddhcp_config.cc126 proxy_->Rebind(device_name()); in RenewIP()