Lines Matching refs:xfa
449 struct fsxattr xfa; in fuse_fileattr_get() local
465 &xfa, sizeof(xfa)); in fuse_fileattr_get()
469 fileattr_fill_xflags(fa, xfa.fsx_xflags); in fuse_fileattr_get()
470 fa->fsx_extsize = xfa.fsx_extsize; in fuse_fileattr_get()
471 fa->fsx_nextents = xfa.fsx_nextents; in fuse_fileattr_get()
472 fa->fsx_projid = xfa.fsx_projid; in fuse_fileattr_get()
473 fa->fsx_cowextsize = xfa.fsx_cowextsize; in fuse_fileattr_get()
487 struct fsxattr xfa; in fuse_fileattr_set() local
500 memset(&xfa, 0, sizeof(xfa)); in fuse_fileattr_set()
501 xfa.fsx_xflags = fa->fsx_xflags; in fuse_fileattr_set()
502 xfa.fsx_extsize = fa->fsx_extsize; in fuse_fileattr_set()
503 xfa.fsx_nextents = fa->fsx_nextents; in fuse_fileattr_set()
504 xfa.fsx_projid = fa->fsx_projid; in fuse_fileattr_set()
505 xfa.fsx_cowextsize = fa->fsx_cowextsize; in fuse_fileattr_set()
508 &xfa, sizeof(xfa)); in fuse_fileattr_set()