Lines Matching refs:stb
335 struct stat stb, stb1;
337 if ((*statf)(file, &stb) < 0) {
338 if (statf == lstat || lstat(file, &stb) < 0) {
349 fp->fblks = stb.st_blocks;
350 fp->fsize = stb.st_size;
351 switch (stb.st_mode & S_IFMT) {
357 fp->ftype = 'b'; fp->fsize = (off_t)stb.st_rdev; break;
359 fp->ftype = 'c'; fp->fsize = (off_t)stb.st_rdev; break;
411 stb = stb1;
413 fp->fsize = stb.st_size;
414 fp->fblks = stb.st_blocks;
418 fp->fnum = stb.st_ino;
419 fp->fflags = stb.st_mode & ~S_IFMT;
420 fp->fnl = stb.st_nlink;
421 fp->fuid = stb.st_uid;
422 fp->fgid = stb.st_gid;
495 fp->fmtime = stb.st_atime;
497 fp->fmtime = stb.st_ctime;
499 fp->fmtime = stb.st_mtime;
501 *pnb += stb.st_blocks;