Home
last modified time | relevance | path

Searched refs:EthernetService (Results 1 – 12 of 12) sorted by relevance

/system/connectivity/shill/ethernet/
Dethernet_service.cc51 const char EthernetService::kAutoConnNoCarrier[] = "no carrier";
52 const char EthernetService::kServiceType[] = "ethernet";
54 EthernetService::EthernetService(ControlInterface* control_interface, in EthernetService() function in shill::EthernetService
59 : EthernetService(control_interface, dispatcher, metrics, manager, in EthernetService()
73 EthernetService::EthernetService(ControlInterface* control_interface, in EthernetService() function in shill::EthernetService
82 EthernetService::~EthernetService() { } in ~EthernetService()
84 void EthernetService::Connect(Error* error, const char* reason) { in Connect()
90 void EthernetService::Disconnect(Error* error, const char* reason) { in Disconnect()
96 std::string EthernetService::GetDeviceRpcId(Error* /*error*/) const { in GetDeviceRpcId()
101 string EthernetService::GetStorageIdentifier() const { in GetStorageIdentifier()
[all …]
Dethernet_service.h37 class EthernetService : public Service {
39 EthernetService(ControlInterface* control_interface,
44 ~EthernetService() override;
69 EthernetService(ControlInterface* control_interface,
88 DISALLOW_COPY_AND_ASSIGN(EthernetService);
Dmock_ethernet.h48 MOCK_METHOD1(ConnectTo, void(EthernetService* service));
49 MOCK_METHOD1(DisconnectFrom, void(EthernetService* service));
Dmock_ethernet_service.cc27 : EthernetService(control_interface, nullptr, metrics, nullptr, in MockEthernetService()
Dethernet.h75 virtual void ConnectTo(EthernetService* service);
76 virtual void DisconnectFrom(EthernetService* service);
Dmock_ethernet_service.h28 class MockEthernetService : public EthernetService {
Dethernet.cc200 void Ethernet::ConnectTo(EthernetService* service) { in ConnectTo()
217 void Ethernet::DisconnectFrom(EthernetService* service) { in DisconnectFrom()
515 return new EthernetService(control_interface_, in CreateEthernetService()
Dethernet_service_unittest.cc49 new EthernetService(control_interface(), in EthernetServiceTest()
/system/connectivity/shill/
Drefptr_types.h64 class EthernetService; variable
65 typedef scoped_refptr<const EthernetService> EthernetServiceConstRefPtr;
66 typedef scoped_refptr<EthernetService> EthernetServiceRefPtr;
DTESTING42 (cros-gdb) b shill::EthernetService::GetStorageIdentifier
45 (cros-gdb) b EthernetService::GetStorageIdentifier
46 Function "EthernetService::GetStorageIdentifier" not defined.
/system/connectivity/shill/pppoe/
Dpppoe_service.cc59 : EthernetService(control_interface, dispatcher, metrics, manager, in PPPoEService()
138 EthernetService::Disconnect(error, reason); in Disconnect()
Dpppoe_service.h47 class PPPoEService : public EthernetService, public RPCTaskDelegate {