Home
last modified time | relevance | path

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

/external/perfetto/src/profiling/symbolizer/
Dsubprocess_windows.cc55 STARTUPINFOA start_info; in Subprocess() local
62 ZeroMemory(&start_info, sizeof(STARTUPINFOA)); in Subprocess()
63 start_info.cb = sizeof(STARTUPINFOA); in Subprocess()
64 start_info.hStdError = child_pipe_out_write_; in Subprocess()
65 start_info.hStdOutput = child_pipe_out_write_; in Subprocess()
66 start_info.hStdInput = child_pipe_in_read_; in Subprocess()
67 start_info.dwFlags |= STARTF_USESTDHANDLES; in Subprocess()
78 &start_info, // STARTUPINFO pointer in Subprocess()
/external/perfetto/src/base/
Dsubprocess_windows.cc84 STARTUPINFOA start_info{}; in Start() local
85 start_info.cb = sizeof(STARTUPINFOA); in Start()
88 start_info.hStdError = ::GetStdHandle(STD_ERROR_HANDLE); in Start()
90 start_info.hStdError = *s_->stdouterr_pipe.wr; in Start()
92 start_info.hStdError = *nul_handle; in Start()
96 start_info.hStdError = *args.out_fd; in Start()
102 start_info.hStdOutput = ::GetStdHandle(STD_OUTPUT_HANDLE); in Start()
104 start_info.hStdOutput = *s_->stdouterr_pipe.wr; in Start()
106 start_info.hStdOutput = *nul_handle; in Start()
110 start_info.hStdOutput = *args.out_fd; in Start()
[all …]