Lines Matching refs:result
59 support_capture_poll (struct support_capture_subprocess *result, in support_capture_poll() argument
71 transfer ("stdout", &fds[0], &result->out); in support_capture_poll()
72 transfer ("stderr", &fds[1], &result->err); in support_capture_poll()
76 xfclose_memstream (&result->out); in support_capture_poll()
77 xfclose_memstream (&result->err); in support_capture_poll()
79 result->status = support_process_wait (proc); in support_capture_poll()
85 struct support_capture_subprocess result; in support_capture_subprocess() local
86 xopen_memstream (&result.out); in support_capture_subprocess()
87 xopen_memstream (&result.err); in support_capture_subprocess()
91 support_capture_poll (&result, &proc); in support_capture_subprocess()
92 return result; in support_capture_subprocess()
98 struct support_capture_subprocess result; in support_capture_subprogram() local
99 xopen_memstream (&result.out); in support_capture_subprogram()
100 xopen_memstream (&result.err); in support_capture_subprogram()
104 support_capture_poll (&result, &proc); in support_capture_subprogram()
105 return result; in support_capture_subprogram()