Home | History | Annotate | Download | only in makeparallel

Lines Matching refs:out_fd

103     int* in_fd, int* out_fd, bool* parallel, bool* keep_going) {
135 if (sscanf(optarg, "%d,%d", in_fd, out_fd) != 2) {
138 // TODO: propagate in_fd, out_fd
275 static void PutJobserverTokens(int out_fd, int tokens) {
279 int ret = TEMP_FAILURE_RETRY(write(out_fd, &buf, 1));
290 int out_fd = -1;
310 if (ParseMakeflags(makeflags, &in_fd, &out_fd, &parallel, &keep_going)) {
311 if (in_fd >= 0 && out_fd >= 0) {
313 CheckFd(out_fd);
315 fcntl(out_fd, F_SETFD, FD_CLOEXEC);
418 PutJobserverTokens(out_fd, tokens);