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.cpp329 bool io_error = false; in RunWithManagedStdio() local
342 stdin_thread = std::thread([pipe_write, stdin, &io_error]() { in RunWithManagedStdio()
345 io_error = true; in RunWithManagedStdio()
362 stdout_thread = std::thread([pipe_read, stdout, &io_error]() { in RunWithManagedStdio()
365 io_error = true; in RunWithManagedStdio()
382 stderr_thread = std::thread([pipe_read, stderr, &io_error]() { in RunWithManagedStdio()
385 io_error = true; in RunWithManagedStdio()
410 if (io_error) { in RunWithManagedStdio()