Searched refs:EthernetService (Results 1 – 12 of 12) sorted by relevance
/system/connectivity/shill/ethernet/ |
D | ethernet_service.cc | 51 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 …]
|
D | ethernet_service.h | 37 class EthernetService : public Service { 39 EthernetService(ControlInterface* control_interface, 44 ~EthernetService() override; 69 EthernetService(ControlInterface* control_interface, 88 DISALLOW_COPY_AND_ASSIGN(EthernetService);
|
D | mock_ethernet.h | 48 MOCK_METHOD1(ConnectTo, void(EthernetService* service)); 49 MOCK_METHOD1(DisconnectFrom, void(EthernetService* service));
|
D | mock_ethernet_service.cc | 27 : EthernetService(control_interface, nullptr, metrics, nullptr, in MockEthernetService()
|
D | ethernet.h | 75 virtual void ConnectTo(EthernetService* service); 76 virtual void DisconnectFrom(EthernetService* service);
|
D | mock_ethernet_service.h | 28 class MockEthernetService : public EthernetService {
|
D | ethernet.cc | 200 void Ethernet::ConnectTo(EthernetService* service) { in ConnectTo() 217 void Ethernet::DisconnectFrom(EthernetService* service) { in DisconnectFrom() 515 return new EthernetService(control_interface_, in CreateEthernetService()
|
D | ethernet_service_unittest.cc | 49 new EthernetService(control_interface(), in EthernetServiceTest()
|
/system/connectivity/shill/ |
D | refptr_types.h | 64 class EthernetService; variable 65 typedef scoped_refptr<const EthernetService> EthernetServiceConstRefPtr; 66 typedef scoped_refptr<EthernetService> EthernetServiceRefPtr;
|
D | TESTING | 42 (cros-gdb) b shill::EthernetService::GetStorageIdentifier 45 (cros-gdb) b EthernetService::GetStorageIdentifier 46 Function "EthernetService::GetStorageIdentifier" not defined.
|
/system/connectivity/shill/pppoe/ |
D | pppoe_service.cc | 59 : EthernetService(control_interface, dispatcher, metrics, manager, in PPPoEService() 138 EthernetService::Disconnect(error, reason); in Disconnect()
|
D | pppoe_service.h | 47 class PPPoEService : public EthernetService, public RPCTaskDelegate {
|