Lines Matching refs:command
105 Command command(group_info.host_binaries_dir + kStatusBin); in CvdFleet() local
106 command.AddParameter("--print"); in CvdFleet()
107 command.AddParameter("--all_instances"); in CvdFleet()
108 command.RedirectStdIO(Subprocess::StdIOChannel::kStdOut, out); in CvdFleet()
109 command.AddEnvironmentVariable(kCuttlefishConfigEnvVarName, in CvdFleet()
111 if (int wait_result = command.Start().Wait(); wait_result != 0) { in CvdFleet()
134 Command command(group_info.host_binaries_dir + kStopBin); in CvdClear() local
136 command.AddParameter("--clear_instance_dirs"); in CvdClear()
137 command.RedirectStdIO(Subprocess::StdIOChannel::kStdOut, out); in CvdClear()
138 command.RedirectStdIO(Subprocess::StdIOChannel::kStdErr, err); in CvdClear()
139 command.AddEnvironmentVariable(kCuttlefishConfigEnvVarName, *config_path); in CvdClear()
140 if (int wait_result = command.Start().Wait(); wait_result != 0) { in CvdClear()