Lines Matching refs:xfa
438 struct fsxattr xfa; in fuse_fileattr_get() local
454 &xfa, sizeof(xfa)); in fuse_fileattr_get()
458 fileattr_fill_xflags(fa, xfa.fsx_xflags); in fuse_fileattr_get()
459 fa->fsx_extsize = xfa.fsx_extsize; in fuse_fileattr_get()
460 fa->fsx_nextents = xfa.fsx_nextents; in fuse_fileattr_get()
461 fa->fsx_projid = xfa.fsx_projid; in fuse_fileattr_get()
462 fa->fsx_cowextsize = xfa.fsx_cowextsize; in fuse_fileattr_get()
476 struct fsxattr xfa; in fuse_fileattr_set() local
489 memset(&xfa, 0, sizeof(xfa)); in fuse_fileattr_set()
490 xfa.fsx_xflags = fa->fsx_xflags; in fuse_fileattr_set()
491 xfa.fsx_extsize = fa->fsx_extsize; in fuse_fileattr_set()
492 xfa.fsx_nextents = fa->fsx_nextents; in fuse_fileattr_set()
493 xfa.fsx_projid = fa->fsx_projid; in fuse_fileattr_set()
494 xfa.fsx_cowextsize = fa->fsx_cowextsize; in fuse_fileattr_set()
497 &xfa, sizeof(xfa)); in fuse_fileattr_set()