Searched refs:stdin_thread (Results 1 – 4 of 4) sorted by relevance
162 s_->stdin_thread = std::thread(&Subprocess::StdinThread, s, args.input); in Start()312 if (s_->stdin_thread.joinable()) // Might not exist if CreateProcess failed. in Wait()313 s_->stdin_thread.join(); in Wait()331 PERFETTO_DCHECK(!s_->stdin_thread.joinable()); in KillAndWaitForTermination()
528 std::thread stdin_thread, stdout_thread, stderr_thread; in RunWithManagedStdio() local529 ThreadJoiner thread_joiner({&stdin_thread, &stdout_thread, &stderr_thread}); in RunWithManagedStdio()540 stdin_thread = std::thread([pipe_write, stdin_str, &io_error]() { in RunWithManagedStdio()
251 std::thread stdin_thread; member