/device/google/cuttlefish/common/libs/utils/ |
D | subprocess.h | 29 class Command; variable 115 class Command { 133 ParameterBuilder(Command* cmd) : cmd_(cmd){}; in ParameterBuilder() 146 Command* cmd_; 153 Command(const std::string& executable, 158 Command(Command&&) = default; 162 Command(const Command&) = delete; 163 Command& operator=(const Command&) = delete; 164 ~Command(); 225 int RunWithManagedStdio(Command&& command, const std::string* stdin,
|
D | subprocess.cpp | 164 Command::ParameterBuilder::~ParameterBuilder() { Build(); } in ~ParameterBuilder() 165 void Command::ParameterBuilder::Build() { in Build() 173 Command::~Command() { in ~Command() 184 bool Command::BuildParameter(std::stringstream* stream, SharedFD shared_fd) { in BuildParameter() 200 bool Command::RedirectStdIO(Subprocess::StdIOChannel channel, in RedirectStdIO() 218 bool Command::RedirectStdIO(Subprocess::StdIOChannel subprocess_channel, in RedirectStdIO() 224 Subprocess Command::Start(SubprocessOptions options) const { in Start() 312 int RunWithManagedStdio(Command&& cmd_tmp, const std::string* stdin, in RunWithManagedStdio() 328 Command cmd = std::move(cmd_tmp); in RunWithManagedStdio() 399 Command forceDelete = std::move(cmd); in RunWithManagedStdio() [all …]
|
D | archive.cpp | 36 Command bsdtar_cmd("/usr/bin/bsdtar"); in Contents() 56 Command bsdtar_cmd("/usr/bin/bsdtar"); in ExtractFiles() 77 Command bsdtar_cmd("/usr/bin/bsdtar"); in ExtractToMemory()
|
D | network.cpp | 101 Command cmd(tapsetiff_path); in OpenTapInterface() 139 Command cmd("/bin/bash"); in TapInterfacesInUse()
|
/device/google/cuttlefish/host/commands/run_cvd/ |
D | launch.cc | 82 cuttlefish::Command* cmd, const cuttlefish::CuttlefishConfig& config) { in CreateStreamerServers() 147 cuttlefish::Command command(config.kernel_log_monitor_binary()); in LaunchKernelLogMonitor() 191 cuttlefish::Command command(config.logcat_receiver_binary()); in LaunchLogcatReceiver() 209 cuttlefish::Command cmd(config.config_server_binary()); in LaunchConfigServer() 243 cuttlefish::Command cmd(config.tombstone_receiver_binary()); in LaunchTombstoneReceiverIfEnabled() 258 cuttlefish::Command vnc_server(config.vnc_server_binary()); in LaunchVNCServer() 271 cuttlefish::Command adb_connector(config.adb_connector_binary()); in LaunchAdbConnectorIfEnabled() 297 cuttlefish::Command sig_server(config.sig_server_binary()); in LaunchWebRTC() 315 cuttlefish::Command webrtc(config.webrtc_binary()); in LaunchWebRTC() 377 cuttlefish::Command cmd( in LaunchModemSimulatorIfEnabled() [all …]
|
D | process_monitor.h | 31 std::unique_ptr<Command> cmd; 46 void StartSubprocess(Command cmd, OnSocketReadyCb on_control_socket_ready_cb); 48 void MonitorExistingSubprocess(Command cmd, Subprocess sub_process,
|
D | process_monitor.cc | 70 void ProcessMonitor::StartSubprocess(Command cmd, OnSocketReadyCb callback) { in StartSubprocess() 82 void ProcessMonitor::MonitorExistingSubprocess(Command cmd, Subprocess proc, in MonitorExistingSubprocess() 88 entry.cmd.reset(new Command(std::move(cmd))); in MonitorExistingSubprocess()
|
D | main.cc | 148 cuttlefish::Command("boot_events_listener"), in SetUpHandlingOfBootEvents() 249 cuttlefish::Command crosvm_qcow2_cmd(crosvm_path); in CreateQcowOverlay()
|
/device/generic/goldfish/network/netmgr/ |
D | commander.h | 25 class Command; variable 34 void registerCommand(const char* commandStr, Command* command); 48 std::unordered_map<std::string, Command*> mCommands;
|
D | commander.cpp | 53 void Commander::registerCommand(const char* commandStr, Command* command) { in registerCommand()
|
/device/google/cuttlefish/host/libs/vm_manager/ |
D | crosvm_manager.cpp | 46 cuttlefish::SharedFD AddTapFdParameter(cuttlefish::Command* crosvm_cmd, in AddTapFdParameter() 80 cuttlefish::Command command(config->crosvm_binary()); in Stop() 111 cuttlefish::Command modprobe_cmd("/usr/bin/nvidia-modprobe"); in ConfigureGpu() 147 std::vector<cuttlefish::Command> CrosvmManager::StartCommands() { in StartCommands() 149 cuttlefish::Command crosvm_cmd(config_->crosvm_binary(), [](cuttlefish::Subprocess* proc) { in StartCommands() 284 cuttlefish::Command console_cmd(config_->console_forwarder_binary()); in StartCommands() 299 cuttlefish::Command log_tee_cmd(cuttlefish::DefaultHostArtifactsPath("bin/log_tee")); in StartCommands() 336 std::vector<cuttlefish::Command> ret; in StartCommands()
|
D | qemu_manager.cpp | 114 std::vector<cuttlefish::Command> QemuManager::StartCommands() { in StartCommands() 143 cuttlefish::Command qemu_cmd(config_->qemu_binary(), stop); in StartCommands() 348 std::vector<cuttlefish::Command> ret; in StartCommands()
|
D | qemu_manager.h | 39 std::vector<cuttlefish::Command> StartCommands() override;
|
D | crosvm_manager.h | 41 std::vector<cuttlefish::Command> StartCommands() override;
|
D | vm_manager.h | 56 virtual std::vector<cuttlefish::Command> StartCommands() = 0;
|
/device/generic/goldfish/network/netmgr/commands/ |
D | command.h | 25 class Command { 27 virtual ~Command() = default;
|
D | wifi_command.h | 29 class WifiCommand : public Command {
|
/device/generic/goldfish-opengl/android-emu/android/base/threads/ |
D | AndroidWorkPool.cpp | 238 Command::Run, in run() 260 enum Command { enum in android::base::guest::WorkPoolThread 266 Command cmd; 273 TaskInfo msg { Command::Exit, }; in exit() 285 case Command::Run: in threadFunc() 288 case Command::Exit: { in threadFunc()
|
/device/linaro/hikey/wpan/ |
D | README | 5 bt_sco_app - Command line application to send PCM configuruations to WL12xx chip(optional) 8 fmradio - Stack and Command line application for FM on WiLink chipsets
|
/device/google/cuttlefish/host/commands/launch/ |
D | launch_cvd.cc | 62 cuttlefish::Command assemble_cmd(kAssemblerBin); in StartAssembler() 75 cuttlefish::Command run_cmd(kRunnerBin); in StartRunner()
|
D | flag_forwarder.cc | 237 cuttlefish::Command cmd(subprocess); in FlagForwarder() 276 cuttlefish::Command cmd(subprocess); in UpdateFlagDefaults()
|
/device/google/cuttlefish/host/commands/assemble_cvd/ |
D | boot_config.cc | 71 cuttlefish::Command cmd(mkimage_path); in InitBootloaderEnvPartition()
|
D | disk_flags.cc | 134 cuttlefish::Command decomp_cmd(cuttlefish::DefaultHostArtifactsPath("bin/extract-vmlinux")); in DecompressKernel()
|
/device/google/cuttlefish/host/commands/tpm_simulator_manager/ |
D | tpm_simulator_manager.cpp | 54 cuttlefish::Command simulator_cmd("/usr/bin/stdbuf"); in main()
|
/device/generic/car/tools/ |
D | README.md | 61 You can append [Android Emulator Command-line startup options](https://developer.android.com/studio…
|