Lines Matching refs:stbuf
95 struct stat stbuf;
118 f = stats(gfile, &stbuf); /* gfile is set by match */
132 stbuf.st_mtime <= fileptr->ar_date) {
140 movefil(fileptr, &stbuf);
554 struct stat stbuf;
563 f = stats(cmd_info->namv[i], &stbuf);
596 movefil(fileptr, &stbuf);
619 movefil(ARFILE *fileptr, struct stat *stbuf)
621 fileptr->ar_size = stbuf->st_size;
622 fileptr->ar_date = stbuf->st_mtime;
623 fileptr->ar_mode = stbuf->st_mode;
634 if ((fileptr->ar_uid = stbuf->st_uid) > 999999) {
639 if ((fileptr->ar_gid = stbuf->st_gid) > 999999) {
647 stats(char *file, struct stat *stbuf)
654 if (stat(file, stbuf) < 0) {