Home | History | Annotate | Download | only in makewhatis

Lines Matching defs:tempfd

776 	int tempfd, bytes, pipefd[2], status;
789 if ((tempfd = mkstemp(tempname)) == -1)
793 if (write(tempfd, buffer, (size_t)bytes) != bytes) {
799 (void)close(tempfd);
803 if (lseek(tempfd, (off_t)0, SEEK_SET) == (off_t)-1) {
804 (void)close(tempfd);
809 (void)close(tempfd);
818 (void)close(tempfd);
824 if (tempfd != STDIN_FILENO) {
825 (void)dup2(tempfd, STDIN_FILENO);
826 (void)close(tempfd);
841 (void)close(tempfd);