Home | History | Annotate | Download | only in pax

Lines Matching defs:statbuf

413 	struct stat	statbuf;
447 Mftent.fts_statp = &statbuf;
451 if (lstat(Mftent.fts_path, &statbuf) == -1) {
456 memset(&statbuf, 0, sizeof(statbuf));
457 statbuf.st_dev = MFTENT_DUMMY_DEV;
458 statbuf.st_ino = ftnode->lineno;
459 statbuf.st_size = 0;
467 statbuf.st_mode = nodetoino(ftnode->type);
471 statbuf.st_mtime = starttime;
483 != (statbuf.st_mode & S_IFMT)) {
488 inotype(statbuf.st_mode));
498 statbuf.st_mode &= ~ALLPERMS;
499 statbuf.st_mode |= (ftnode->st_mode & ALLPERMS);
502 statbuf.st_gid = ftnode->st_gid;
504 statbuf.st_uid = ftnode->st_uid;
507 statbuf.st_flags = ftnode->st_flags;
511 statbuf.st_mtimespec = ftnode->st_mtimespec;
513 statbuf.st_mtime = ftnode->st_mtimespec.tv_sec;
516 statbuf.st_rdev = ftnode->st_rdev;