Lines Matching refs:ar_hdr
243 struct ar_hdr struct
262 # define ar_hdr _IMAGE_ARCHIVE_MEMBER_HEADER argument
273 # define AR_HDR_SIZE (sizeof (struct ar_hdr))
427 struct ar_hdr member_header; in ar_scan()
724 struct ar_hdr hdr; in ar_name_equal()
762 struct ar_hdr ar_hdr; in ar_member_touch() local
778 if (AR_HDR_SIZE != read (fd, (char *) &ar_hdr, AR_HDR_SIZE)) in ar_member_touch()
783 if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE)) in ar_member_touch()
791 for (ui = 0; ui < sizeof ar_hdr.ar_date; ui++) in ar_member_touch()
792 ar_hdr.ar_date[ui] = ' '; in ar_member_touch()
793 sprintf (ar_hdr.ar_date, "%ld", (long int) statbuf.st_mtime); in ar_member_touch()
795 ar_hdr.ar_date[strlen(ar_hdr.ar_date)] = ' '; in ar_member_touch()
798 ar_hdr.ar_date = statbuf.st_mtime; in ar_member_touch()
803 if (AR_HDR_SIZE != write (fd, (char *) &ar_hdr, AR_HDR_SIZE)) in ar_member_touch()