Home
last modified time | relevance | path

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

/device/google/cuttlefish/common/libs/utils/
Dsubprocess.cpp388 std::thread stdin_thread, stdout_thread, stderr_thread; in RunWithManagedStdio() local
389 ThreadJoiner thread_joiner({&stdin_thread, &stdout_thread, &stderr_thread}); in RunWithManagedStdio()
400 stdin_thread = std::thread([pipe_write, stdin_str, &io_error]() { in RunWithManagedStdio()
/device/generic/goldfish-opengl/system/profiler/
Dperfetto.cpp7119 std::thread stdin_thread; member
7818 s_->stdin_thread = std::thread(&Subprocess::StdinThread, s, args.input); in Start()
7966 if (s_->stdin_thread.joinable()) // Might not exist if CreateProcess failed. in Wait()
7967 s_->stdin_thread.join(); in Wait()
7985 PERFETTO_DCHECK(!s_->stdin_thread.joinable()); in KillAndWaitForTermination()