Home | History | Annotate | Download | only in dhcp_client

Lines Matching refs:Service

18 #include "dhcp_client/service.h"
31 scoped_refptr<Service> Manager::StartService(
33 scoped_refptr<Service> service = new Service(this,
37 services_.push_back(service);
38 return service;
41 bool Manager::StopService(const scoped_refptr<Service>& service) {
43 if (*it == service) {