Home
last modified time | relevance | path

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

/system/core/adb/daemon/
Dservices.cpp100 SubprocessType type(command.empty() ? SubprocessType::kPty : SubprocessType::kRaw); in ShellService()
106 type = SubprocessType::kRaw; 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_test.cpp157 SubprocessType::kRaw, SubprocessProtocol::kNone)); in TEST_F()
179 SubprocessType::kRaw, SubprocessProtocol::kShell)); in TEST_F()
234 SubprocessType::kRaw, SubprocessProtocol::kShell)); in TEST_F()
253 SubprocessType::kRaw, SubprocessProtocol::kShell)); in TEST_F()
265 SubprocessType::kRaw, SubprocessProtocol::kShell)); in TEST_F()
Dshell_service.h27 kRaw, enumerator
Dabb_service.cpp79 constexpr auto abb_process_type = SubprocessType::kRaw; in startAbbProcess()
Dshell_service.cpp426 CHECK(type_ == SubprocessType::kRaw); in ExecInProcess()
700 if (type_ == SubprocessType::kRaw) { in PassInput()
836 if (protocol == SubprocessProtocol::kNone && type == SubprocessType::kRaw) { in StartSubprocess()
856 type == SubprocessType::kRaw ? "raw" : "PTY", in StartSubprocess()
891 constexpr auto type = SubprocessType::kRaw; in StartCommandInProcess()