OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dnsmasq_process_
(Results
1 - 3
of
3
) sorted by null
/system/connectivity/apmanager/
dhcp_server.cc
63
if (
dnsmasq_process_
) {
66
dnsmasq_process_
->Kill(SIGTERM, kTerminationTimeoutSeconds);
67
dnsmasq_process_
.reset();
74
if (
dnsmasq_process_
) {
101
dnsmasq_process_
.reset(process_factory_->CreateProcess());
102
dnsmasq_process_
->AddArg(kDnsmasqPath);
103
dnsmasq_process_
->AddArg(base::StringPrintf("--conf-file=%s",
108
dnsmasq_process_
->AddArg(
111
if (!
dnsmasq_process_
->Start()) {
113
dnsmasq_process_
.reset()
[
all
...]
dhcp_server_unittest.cc
89
dhcp_server_->
dnsmasq_process_
.reset(new brillo::ProcessImpl);
90
dhcp_server_->
dnsmasq_process_
->AddArg(kBinSleep);
91
dhcp_server_->
dnsmasq_process_
->AddArg("12345");
92
CHECK(dhcp_server_->
dnsmasq_process_
->Start());
dhcp_server.h
60
std::unique_ptr<brillo::Process>
dnsmasq_process_
;
member in class:apmanager::DHCPServer
Completed in 57 milliseconds