Home
last modified time | relevance | path

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

/device/google/cuttlefish/common/libs/utils/
Dsubprocess.cpp561 bool io_error = false; in RunWithManagedStdio() local
570 stdin_thread = std::thread([pipe_write, stdin_str, &io_error]() { in RunWithManagedStdio()
573 io_error = true; in RunWithManagedStdio()
586 stdout_thread = std::thread([pipe_read, stdout_str, &io_error]() { in RunWithManagedStdio()
589 io_error = true; in RunWithManagedStdio()
602 stderr_thread = std::thread([pipe_read, stderr_str, &io_error]() { in RunWithManagedStdio()
605 io_error = true; in RunWithManagedStdio()
626 if (io_error) { in RunWithManagedStdio()