HomeSort by relevance Sort by last modified time
    Searched refs:out_read (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/base/process/
launch_win.cc 296 HANDLE out_read = NULL; local
306 if (!CreatePipe(&out_read, &out_write, &sa_attr, 0)) {
312 win::ScopedHandle scoped_out_read(out_read);
316 if (!SetHandleInformation(out_read, HANDLE_FLAG_INHERIT, 0)) {
355 BOOL success = ReadFile(out_read, buffer, kBufferSize, &bytes_read, NULL);
  /external/chromium_org/tools/gn/
function_exec_script.cc 57 HANDLE out_read = NULL; local
59 if (!CreatePipe(&out_read, &out_write, &sa_attr, 0)) {
63 base::win::ScopedHandle scoped_out_read(out_read);
77 if (!SetHandleInformation(out_read, HANDLE_FLAG_INHERIT, 0)) {
126 BOOL success = ReadFile(out_read, buffer, kBufferSize, &bytes_read, NULL);

Completed in 109 milliseconds