Searched refs:vfa (Results 1 - 6 of 6) sorted by relevance

/darwin-on-arm/xnu/bsd/vfs/
H A Dvfs_vnops.c1439 struct vfs_attr vfa; local
1489 memset(&vfa, 0, sizeof(vfa));
1490 VFSATTR_INIT(&vfa);
1491 VFSATTR_WANTED(&vfa, f_capabilities);
1492 if (vfs_getattr(vnode_mount(vp), &vfa, ctx) == 0 &&
1493 (VFSATTR_IS_SUPPORTED(&vfa, f_capabilities)) &&
1494 (vfa.f_capabilities.capabilities[VOL_CAPABILITIES_INTERFACES] & VOL_CAP_INT_EXTENDED_ATTR) &&
1495 (vfa.f_capabilities.valid[VOL_CAPABILITIES_INTERFACES] & VOL_CAP_INT_EXTENDED_ATTR)) {
H A Dkpi_vfs.c402 VFS_GETATTR(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx) argument
424 error = (*mp->mnt_op->vfs_getattr)(mp, vfa, ctx);
436 VFS_SETATTR(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx) argument
458 error = (*mp->mnt_op->vfs_setattr)(mp, vfa, ctx);
874 vfs_getattr(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx) argument
878 if ((error = VFS_GETATTR(mp, vfa, ctx)) != 0)
884 if (VFSATTR_IS_SUPPORTED(vfa, f_create_time)) {
885 if (VFSATTR_IS_ACTIVE(vfa, f_modify_time) && !VFSATTR_IS_SUPPORTED(vfa, f_modify_time))
886 VFSATTR_RETURN(vfa, f_modify_tim
893 vfs_setattr(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx) argument
[all...]
/darwin-on-arm/xnu/bsd/sys/
H A Dmount.h589 @param vfa Container for specifying which attributes are desired and which attributes the filesystem
678 @param vfa VFS attribute structure containing requested attributes to set and their values. Currently
1175 int vfs_getattr(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx);
1176 int vfs_setattr(mount_t mp, struct vfs_attr *vfa, vfs_context_t ctx);
/darwin-on-arm/xnu/security/
H A Dmac_vfs.c1297 struct vfs_attr *vfa)
1307 MAC_CHECK(mount_check_getattr, cred, mp, mp->mnt_mntlabel, vfa);
1313 struct vfs_attr *vfa)
1323 MAC_CHECK(mount_check_setattr, cred, mp, mp->mnt_mntlabel, vfa);
1296 mac_mount_check_getattr(vfs_context_t ctx, struct mount *mp, struct vfs_attr *vfa) argument
1312 mac_mount_check_setattr(vfs_context_t ctx, struct mount *mp, struct vfs_attr *vfa) argument
H A Dmac_framework.h262 struct vfs_attr *vfa);
268 struct vfs_attr *vfa);
H A Dmac_policy.h1697 @param vfa The attributes requested
1711 struct vfs_attr *vfa
1773 @param vfa The attributes requested
1786 struct vfs_attr *vfa

Completed in 95 milliseconds