Searched refs:stdout_fd (Results 1 - 2 of 2) sorted by relevance

/external/bison/lib/
H A Derror.c146 int stdout_fd; local
152 stdout_fd = STDOUT_FILENO;
157 stdout_fd = fileno (stdout);
162 if (0 <= stdout_fd && is_open (stdout_fd))
/external/lldb/tools/debugserver/source/MacOSX/
H A DMachProcess.cpp1283 int stdout_fd = proc->GetStdoutFileDescriptor(); local
1285 if (stdout_fd == stderr_fd)
1288 while (stdout_fd >= 0 || stderr_fd >= 0)
1294 if (stdout_fd >= 0)
1295 FD_SET (stdout_fd, &read_fds);
1298 int nfds = std::max<int>(stdout_fd, stderr_fd) + 1;
1333 if (stdout_fd >= 0 && FD_ISSET (stdout_fd, &read_fds))
1337 bytes_read = ::read (stdout_fd, s, sizeof(s)-1);
1341 DNBLogThreadedIf(LOG_PROCESS, "read (stdout_fd, )
[all...]

Completed in 114 milliseconds