Home | History | Annotate | Download | only in fdesc

Lines Matching defs:stb

331 	struct stat stb;
352 memset(&stb, 0, sizeof(stb));
353 error = (*fp->f_ops->fo_stat)(fp, &stb);
370 vap->va_mode = stb.st_mode;
371 vap->va_nlink = stb.st_nlink;
372 vap->va_uid = stb.st_uid;
373 vap->va_gid = stb.st_gid;
374 vap->va_fsid = stb.st_dev;
375 vap->va_fileid = stb.st_ino;
376 vap->va_size = stb.st_size;
377 vap->va_blocksize = stb.st_blksize;
378 vap->va_atime = stb.st_atimespec;
379 vap->va_mtime = stb.st_mtimespec;
380 vap->va_ctime = stb.st_ctimespec;
381 vap->va_gen = stb.st_gen;
382 vap->va_flags = stb.st_flags;
383 vap->va_rdev = stb.st_rdev;
384 vap->va_bytes = stb.st_blocks * stb.st_blksize;