| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/chattr/ | 
| H A D | chattr_001_pos.ksh | 43 #       2. Use chattr to make them writable, immutable and appendonly 47 set -A files writable immutable append 71 log_must touch $TESTDIR/immutable 76 	log_must chflags schg $TESTDIR/immutable 80 	log_must chattr +i $TESTDIR/immutable 86 log_mustnot eval "echo test > $TESTDIR/immutable" 87 log_mustnot eval "echo test >> $TESTDIR/immutable"
  | 
| H A D | chattr_002_neg.ksh | 43 #       2. Use chattr to make them writable, immutable and appendonly 47 set -A files writable immutable append 65 log_must user_run $QUSER1 touch $TESTDIR/immutable 69 log_must chattr +i $TESTDIR/immutable 74 log_must user_run $QUSER1 chattr +i $TESTDIR/immutable 79 log_mustnot user_run $QUSER1 chattr -i $TESTDIR/immutable
  | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ | 
| H A D | Attributes.h | 327 /// function, or return value. It is an immutable value type that is cheap to 357   /// immutable. 362   /// are immutable. 367   /// sets are immutable. 372   /// attribute sets are immutable. 377   /// attribute sets are immutable. 382   /// attribute sets are immutable. 531   /// Returns a new list because attribute lists are immutable. 537   /// Returns a new list because attribute lists are immutable. 543   /// Returns a new list because attribute lists are immutable. [all …] 
 | 
| H A D | Constant.h | 27 /// immutable at runtime. Functions are constants because their address is 28 /// immutable. Same with global variables. 36 /// Note that Constants are immutable (once created they never change)
  | 
| H A D | LegacyPassManagers.h | 184   /// Find the pass that implements Analysis AID. Search immutable 197   /// Add immutable pass and initialize it. 239   /// Immutable passes are managed by top level manager. 242   /// Map from ID to immutable passes.
  | 
| /freebsd/usr.sbin/bhyve/ | 
| H A D | mem.c | 172 	int err, perror, immutable, vcpuid;  in access_memory()  local 210 	 * An 'immutable' memory range is guaranteed to be never removed  in access_memory() 218 	 * config space window as 'immutable' the deadlock can be avoided.  in access_memory() 220 	immutable = (mr->flags & MEM_F_IMMUTABLE) != 0;  in access_memory() 221 	if (immutable) {  in access_memory() 228 	if (!immutable) {  in access_memory()
  | 
| /freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ | 
| H A D | ProgramStateTrait.h | 75   /// Declares an immutable map of type \p NameTy, suitable for placement into 91   /// Declares an immutable map type \p Name and registers the factory 100   /// Declares an immutable set of type \p NameTy, suitable for placement into 115   /// Declares an immutable set type \p Name and registers the factory 124   /// Declares an immutable list type \p NameTy, suitable for placement into 138   /// Declares an immutable list of type \p Name and registers the factory
  | 
| /freebsd/contrib/bmake/unit-tests/ | 
| H A D | varcmd.exp | 3 immutable FU='bar' 4 immutable FOO='goo'
  | 
| H A D | varcmd.mk | 48 two: immutable 49 immutable:
  | 
| /freebsd/bin/chflags/ | 
| H A D | chflags.1 | 115 set the system immutable flag (super-user only) 125 set the user immutable flag (owner or super-user only) 151 clear the user immutable flag (owner or super-user only)
  | 
| /freebsd/usr.sbin/bsdconfig/security/include/ | 
| H A D | securelevel.hlp | 11    0     Insecure mode - immutable and append-only flags may be turned 15    1     Secure mode - the system immutable and system append-only
  | 
| /freebsd/contrib/libxo/libxo/ | 
| H A D | xo_emit_f.3 | 54 The format string must be immutable across multiple calls to 59 immutable, the
  | 
| /freebsd/lib/libsys/ | 
| H A D | rename.2 | 173 argument has its immutable, undeletable or append-only flag set, see the 179 argument has its immutable or append-only flag set. 183 argument has its immutable flag set.
  | 
| H A D | rmdir.2 | 78 The directory to be removed has its immutable, undeletable or append-only flag 83 The parent directory of the directory to be removed has its immutable or
  | 
| H A D | fhlink.2 | 174 has its immutable or append-only flag set, see the 180 has its immutable flag set.
  | 
| H A D | unlink.2 | 163 The named file has its immutable, undeletable or append-only flag set, see the 167 The parent directory of the named file has its immutable or append-only flag
  | 
| H A D | link.2 | 208 has its immutable or append-only flag set, see the 214 has its immutable flag set.
  | 
| /freebsd/tests/sys/cddl/zfs/tests/acl/cifs/ | 
| H A D | cifs_attr_003_pos.ksh | 38 #	and BSD'ish attributes (Immutable, nounlink, and appendonly)  51 #	Immutable (The data can't, change nor can mode, ACL, size and so on) 54 #	Nonunlink - Sort of like immutable except that a file/dir can't be 437 # Testing function to verify the given node is immutable 449 	log_note "Testing immutable of $object"
  | 
| /freebsd/lib/libc/locale/ | 
| H A D | DESIGN.xlocale | 37 A locale_t is almost immutable after creation.  There are no functions that modify it, 42 supported by `setlocale()`.  These are likewise immutable after creation.  This 98 The `localeconv()` function is an exception to the immutable-after-creation
  | 
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ | 
| H A D | ImmutableSet.h | 1 //===--- ImmutableSet.h - Immutable (functional) set interface --*- C++ -*-===// 34 // Immutable AVL-Tree Definition. 242   ///  the tree is truly immutable.  Trees returned from an ImutAVLFactory 249   ///  This can only be true if the tree is immutable. 258   // immutable.  Note that a tree that still has its mutable 260   // immutable. 355 // Immutable AVL-Tree Factory class. 638 // Immutable AVL-Tree Iterators. 905 ///   elements of immutable containers that defaults to using 953 // Immutable Set [all …] 
 | 
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ | 
| H A D | RegAllocEvictionAdvisor.h | 155 /// immutable pass is twofold: 157 /// in the development mode) expensive to set up. With an immutable pass, we set 162 /// completes. So we need the properties of an immutable pass to keep the logger
  | 
| /freebsd/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zfs_set/ | 
| H A D | ro_props_001_pos.ksh | 36 # Verify that read-only properties are immutable. 74 log_assert "Verify that read-only properties are immutable."
  | 
| /freebsd/tests/sys/cddl/zfs/tests/cli_root/zfs_set/ | 
| H A D | ro_props_001_pos.ksh | 37 # Verify that read-only properties are immutable. 108 log_assert "Verify that read-only properties are immutable."
  | 
| /freebsd/sys/dev/cxgbe/iw_cxgbe/ | 
| H A D | provider.c | 381 			       struct ib_port_immutable *immutable)  in c4iw_port_immutable()  argument 386 	immutable->core_cap_flags = RDMA_CORE_PORT_IWARP;  in c4iw_port_immutable() 392 	immutable->pkey_tbl_len = attr.pkey_tbl_len;  in c4iw_port_immutable() 393 	immutable->gid_tbl_len = attr.gid_tbl_len;  in c4iw_port_immutable()
  | 
| /freebsd/contrib/kyua/utils/ | 
| H A D | auto_array.ipp | 112 /// \return The raw immutable pointer. 202 /// \return An immutable reference to the element at the specified position.
  |