Lines Matching refs:VWRITE
692 KASSERT((accmode & ~(VEXEC | VWRITE | VREAD | VADMIN | VAPPEND)) == 0);
693 KASSERT((accmode & VAPPEND) == 0 || (accmode & VWRITE));
710 dac_granted |= (VWRITE | VAPPEND);
726 dac_granted |= (VWRITE | VAPPEND);
737 dac_granted |= (VWRITE | VAPPEND);
763 KASSERT((accmode & ~(VEXEC | VWRITE | VREAD | VADMIN | VAPPEND)) == 0);
764 KASSERT((accmode & VAPPEND) == 0 || (accmode & VWRITE));
786 dac_granted |= (VWRITE | VAPPEND);
830 acl_mask_granted |= (VWRITE | VAPPEND);
832 acl_mask_granted = VEXEC | VREAD | VWRITE | VAPPEND;
851 dac_granted |= (VWRITE | VAPPEND);
880 dac_granted |= (VWRITE | VAPPEND);
901 dac_granted |= (VWRITE | VAPPEND);
935 dac_granted |= (VWRITE | VAPPEND);
951 dac_granted |= (VWRITE | VAPPEND);
976 dac_granted |= (VWRITE | VAPPEND);
989 { VWRITE, ACL_WRITE_DATA },
1016 * VAPPEND is just a modifier for VWRITE; if the caller asked
1017 * for 'VAPPEND | VWRITE', we want to check for ACL_APPEND_DATA only.
1102 KASSERT((accmode & ~(VEXEC | VWRITE | VREAD | VADMIN | VAPPEND |
1106 KASSERT((accmode & VAPPEND) == 0 || (accmode & VWRITE));
1320 error = VOP_ACCESS(vp, VWRITE, cred);
1412 KASSERT((ap->a_accmode & ~(VEXEC | VWRITE | VREAD | VADMIN |