HomeSort by relevance Sort by last modified time
    Searched refs:xoap (Results 1 - 9 of 9) sorted by null

  /netvirt/usr/src/uts/common/fs/zfs/
zfs_log.c 105 xoptattr_t *xoap; local
109 xoap = xva_getxoptattr(xvap);
110 ASSERT(xoap);
124 *attrs |= (xoap->xoa_readonly == 0) ? 0 :
127 *attrs |= (xoap->xoa_hidden == 0) ? 0 :
130 *attrs |= (xoap->xoa_system == 0) ? 0 :
133 *attrs |= (xoap->xoa_archive == 0) ? 0 :
136 *attrs |= (xoap->xoa_immutable == 0) ? 0 :
139 *attrs |= (xoap->xoa_nounlink == 0) ? 0 :
142 *attrs |= (xoap->xoa_appendonly == 0) ? 0
    [all...]
zfs_replay.c 82 xoptattr_t *xoap = NULL; local
90 if ((xoap = xva_getxoptattr(xvap)) == NULL) {
106 xoap->xoa_hidden = ((*attrs & XAT0_HIDDEN) != 0);
108 xoap->xoa_system = ((*attrs & XAT0_SYSTEM) != 0);
110 xoap->xoa_archive = ((*attrs & XAT0_ARCHIVE) != 0);
112 xoap->xoa_readonly = ((*attrs & XAT0_READONLY) != 0);
114 xoap->xoa_immutable = ((*attrs & XAT0_IMMUTABLE) != 0);
116 xoap->xoa_nounlink = ((*attrs & XAT0_NOUNLINK) != 0);
118 xoap->xoa_appendonly = ((*attrs & XAT0_APPENDONLY) != 0);
120 xoap->xoa_nodump = ((*attrs & XAT0_NODUMP) != 0)
    [all...]
zfs_znode.c 693 xoptattr_t *xoap; local
695 xoap = xva_getxoptattr(xvap);
696 ASSERT(xoap);
699 ZFS_TIME_ENCODE(&xoap->xoa_createtime, zp->z_phys->zp_crtime);
703 ZFS_ATTR_SET(zp, ZFS_READONLY, xoap->xoa_readonly);
707 ZFS_ATTR_SET(zp, ZFS_HIDDEN, xoap->xoa_hidden);
711 ZFS_ATTR_SET(zp, ZFS_SYSTEM, xoap->xoa_system);
715 ZFS_ATTR_SET(zp, ZFS_ARCHIVE, xoap->xoa_archive);
719 ZFS_ATTR_SET(zp, ZFS_IMMUTABLE, xoap->xoa_immutable);
723 ZFS_ATTR_SET(zp, ZFS_NOUNLINK, xoap->xoa_nounlink)
    [all...]
zfs_vnops.c 2137 xoptattr_t *xoap = NULL; local
2340 xoptattr_t *xoap; local
    [all...]
  /netvirt/usr/src/uts/common/fs/
xattr.c 139 xoptattr_t *xoap; /* Pointer to optional attributes */ local
146 if ((xoap = xva_getxoptattr(&xvattr)) == NULL)
228 * xoap was set when the optional attribute bits were set above.
230 if ((xvattr.xva_vattr.va_mask & AT_XVATTR) && xoap) {
234 xoap->xoa_readonly) == 0);
239 xoap->xoa_hidden) == 0);
244 xoap->xoa_system) == 0);
249 xoap->xoa_archive) == 0);
254 xoap->xoa_immutable) == 0);
259 xoap->xoa_nounlink) == 0)
466 xoptattr_t *xoap = NULL; \/* Pointer to optional attributes *\/ local
    [all...]
vnode.c 388 xoptattr_t *xoap = NULL; local
390 xoap = &xvap->xva_xoptattrs;
391 return (xoap);
    [all...]
  /netvirt/usr/src/uts/common/io/vscan/
vscan_svc.c 605 xoptattr_t *xoap = NULL; local
624 if ((xoap = xva_getxoptattr(&xvattr)) == NULL) {
634 vscan_svc_files[idx].vsf_modified = xoap->xoa_av_modified;
638 vscan_svc_files[idx].vsf_quarantined = xoap->xoa_av_quarantined;
642 xoap->xoa_av_scanstamp, AV_SCANSTAMP_SZ);
661 xoptattr_t *xoap = NULL; local
672 if ((xoap = xva_getxoptattr(&xvattr)) == NULL)
676 xoap->xoa_av_modified = vscan_svc_files[idx].vsf_modified;
679 xoap->xoa_av_quarantined = vscan_svc_files[idx].vsf_quarantined;
683 (void) memcpy(xoap->xoa_av_scanstamp
    [all...]
  /netvirt/usr/src/uts/common/fs/smbsrv/
smb_vops.c 212 xoptattr_t *xoap = NULL; local
221 xoap = xva_getxoptattr(&tmp_xvattr);
223 ASSERT(xoap);
248 xoap = xva_getxoptattr(&tmp_xvattr);
249 ASSERT(xoap);
252 if (xoap->xoa_readonly)
257 if (xoap->xoa_hidden)
262 if (xoap->xoa_system)
267 if (xoap->xoa_archive)
271 ret_attr->sa_crtime = xoap->xoa_createtime
666 xoptattr_t *xoap = NULL; local
    [all...]
  /netvirt/usr/src/uts/common/os/
policy.c 994 xoptattr_t *xoap; local
997 if ((xoap = xva_getxoptattr(xvap)) == NULL)
1018 xoap->xoa_immutable, cr);
1021 xoap->xoa_nounlink, cr);
1024 xoap->xoa_appendonly, cr);
1027 xoap->xoa_nodump, cr);
1032 xoap->xoa_av_quarantined, cr);
1033 if (error == 0 && vtype != VREG && xoap->xoa_av_quarantined)
1038 xoap->xoa_av_modified, cr);
1041 xoap->xoa_av_scanstamp, cr)
    [all...]

Completed in 120 milliseconds