Home
last modified time | relevance | path

Searched refs:StartSubprocess (Results 1 – 5 of 5) sorted by relevance

/system/core/adb/daemon/
Dservices.cpp119 return StartSubprocess(command, terminal_type.c_str(), type, protocol); in ShellService()
161 return StartSubprocess(cmd, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone); in reboot_device()
278 return StartSubprocess(cmd, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone); in daemon_service_to_fd()
288 return StartSubprocess(cmd, nullptr, SubprocessType::kRaw, SubprocessProtocol::kNone); in daemon_service_to_fd()
290 return StartSubprocess("/system/bin/bu restore", nullptr, SubprocessType::kRaw, in daemon_service_to_fd()
293 return StartSubprocess("/system/bin/disable-verity", nullptr, SubprocessType::kRaw, in daemon_service_to_fd()
296 return StartSubprocess("/system/bin/enable-verity", nullptr, SubprocessType::kRaw, in daemon_service_to_fd()
323 return StartSubprocess(std::string(name), nullptr, SubprocessType::kRaw, in daemon_service_to_fd()
Dshell_service.h39 unique_fd StartSubprocess(std::string name, const char* terminal_type, SubprocessType type,
43 unique_fd StartSubprocess(std::string name, const char* terminal_type, SubprocessType type,
Dabb_service.cpp82 return StartSubprocess("abb", "dumb", abb_process_type, abb_protocol, make_pty_raw, in startAbbProcess()
Dshell_service.cpp827 unique_fd StartSubprocess(std::string name, const char* terminal_type, SubprocessType type, in StartSubprocess() function
844 unique_fd fd = StartSubprocess(std::move(name), terminal_type, type, protocol, make_pty_raw, in StartSubprocess()
852 unique_fd StartSubprocess(std::string name, const char* terminal_type, SubprocessType type, in StartSubprocess() function
Dshell_service_test.cpp64 command_fd_ = StartSubprocess(command, nullptr, type, protocol); in StartTestSubprocess()