Lines Matching refs:fd
761 int fd; in ar_member_touch() local
772 fd = open (arname, O_RDWR, 0666); in ar_member_touch()
773 if (fd < 0) in ar_member_touch()
776 if (lseek (fd, pos, 0) < 0) in ar_member_touch()
778 if (AR_HDR_SIZE != read (fd, (char *) &ar_hdr, AR_HDR_SIZE)) in ar_member_touch()
781 if (lseek (fd, pos, 0) < 0) in ar_member_touch()
783 if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE)) in ar_member_touch()
786 EINTRLOOP (i, fstat (fd, &statbuf)); in ar_member_touch()
801 if (lseek (fd, pos, 0) < 0) in ar_member_touch()
803 if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE)) in ar_member_touch()
805 close (fd); in ar_member_touch()
810 close (fd); in ar_member_touch()