HomeSort by: relevance | last modified time | path
    Searched refs:IMMUTABLE (Results 1 - 16 of 16) sorted by relevancy

  /src/sys/ufs/lfs/
ulfs_vnops.c 186 /* If immutable bit set, nobody gets to write it. */
187 if ((accmode & VWRITE) && (ip->i_flags & IMMUTABLE))
314 if (vap->va_flags & (IMMUTABLE | APPEND)) {
319 if (ip->i_flags & (IMMUTABLE | APPEND)) {
532 if (vp->v_type == VDIR || (ip->i_flags & (IMMUTABLE | APPEND)) ||
587 if (ip->i_flags & (IMMUTABLE | APPEND)) {
725 (ip->i_flags & (IMMUTABLE | APPEND))) {
lfs_rename.c 184 IMMUTABLE, APPEND);
248 IMMUTABLE, APPEND);
  /src/sys/ufs/ufs/
ufs_acl.c 457 if (ip->i_flags & (IMMUTABLE | APPEND))
529 if (ip->i_flags & (IMMUTABLE | APPEND))
ufs_vnops.c 304 * If immutable bit set, nobody gets to write it. "& ~VADMIN_PERMS"
305 * permits the owner of the file to remove the IMMUTABLE flag.
308 (ip->i_flags & IMMUTABLE))
561 if (vap->va_flags & (IMMUTABLE | APPEND)) {
566 if (ip->i_flags & (IMMUTABLE | APPEND)) {
855 if (vp->v_type == VDIR || (ip->i_flags & (IMMUTABLE | APPEND)) ||
916 if (ip->i_flags & (IMMUTABLE | APPEND)) {
1434 (ip->i_flags & (IMMUTABLE | APPEND))) {
ufs_rename.c 175 IMMUTABLE, APPEND);
239 IMMUTABLE, APPEND);
  /src/sys/ufs/chfs/
chfs_subr.c 297 if (flags & (IMMUTABLE | APPEND))
chfs_vnops.c 397 if (accmode & VWRITE && ip->flags & IMMUTABLE)
483 if (ip->flags & (IMMUTABLE | APPEND)) {
1054 if (vp->v_type == VDIR || (ip->flags & (IMMUTABLE | APPEND)) ||
  /src/sys/fs/tmpfs/
tmpfs_subr.c 1028 /* Immutable or append-only files cannot be modified, either. */
1029 if (node->tn_flags & (IMMUTABLE | APPEND))
1070 /* Immutable or append-only files cannot be modified, either. */
1071 if (node->tn_flags & (IMMUTABLE | APPEND))
1121 /* Immutable or append-only files cannot be modified, either. */
1122 if (node->tn_flags & (IMMUTABLE | APPEND)) {
1156 /* Immutable or append-only files cannot be modified, either. */
1157 if (node->tn_flags & (IMMUTABLE | APPEND))
tmpfs_rename.c 164 IMMUTABLE, APPEND);
230 IMMUTABLE, APPEND);
tmpfs_vnops.c 410 if (writing && (node->tn_flags & IMMUTABLE) != 0) {
711 * Files marked as immutable or append-only cannot be deleted.
715 if (node->tn_flags & (IMMUTABLE | APPEND)) {
800 /* We cannot create links of files marked immutable or append-only. */
801 if (node->tn_flags & (IMMUTABLE | APPEND)) {
903 if (dnode->tn_flags & APPEND || node->tn_flags & (IMMUTABLE | APPEND)) {
  /src/sys/sys/
stat.h 226 #define IMMUTABLE (UF_IMMUTABLE | SF_IMMUTABLE)
  /src/sys/fs/udf/
udf_vnops.c 1017 /* Immutable or append-only files cannot be modified, either. */
1018 if (udf_node->flags & (IMMUTABLE | APPEND))
1066 /* Immutable or append-only files cannot be modified, either. */
1067 if (udf_node->flags & (IMMUTABLE | APPEND))
1127 /* Immutable or append-only files cannot be modified, either. */
1128 if (node->flags & (IMMUTABLE | APPEND))
1174 /* Immutable or append-only files cannot be modified, either. */
1175 if (udf_node->flags & (IMMUTABLE | APPEND))
1426 /* noone may write immutable files */
1429 if ((mode & VWRITE) && (flags & IMMUTABLE))
    [all...]
  /src/sys/fs/ptyfs/
ptyfs_vnops.c 404 /* Immutable and append-only flags are not supported on ptyfs. */
405 if (vap->va_flags & (IMMUTABLE | APPEND))
  /src/sys/ufs/ext2fs/
ext2fs_vnops.c 219 /* If immutable bit set, nobody gets to write it. */
367 if (vap->va_flags & (IMMUTABLE | APPEND))
  /src/sys/fs/nilfs/
nilfs_vnops.c 1016 /* noone may write immutable files */
1019 if ((accmode & VWRITE) && (flags & IMMUTABLE))
  /src/sys/kern/
vfs_vnops.c 1023 * maxprot if the file is not immutable, append-only.
1035 (SF_SNAPSHOT|IMMUTABLE|APPEND)) == 0)

Completed in 25 milliseconds