Home
last modified time | relevance | path

Searched refs:UF_IMMUTABLE (Results 1 – 24 of 24) sorted by relevance

/external/e2fsprogs/lib/e2p/
Dsetflags.c45 #ifdef UF_IMMUTABLE in setflags()
47 bsd_flags |= UF_IMMUTABLE; in setflags()
Dgetflags.c40 #ifdef UF_IMMUTABLE in getflags()
41 if (buf.st_flags & UF_IMMUTABLE) in getflags()
Dfgetflags.c57 #ifdef UF_IMMUTABLE in fgetflags()
58 if (buf.st_flags & UF_IMMUTABLE) in fgetflags()
Dfsetflags.c62 #ifdef UF_IMMUTABLE in fsetflags()
64 bsd_flags |= UF_IMMUTABLE; in fsetflags()
/external/python/cpython3/Modules/
D_stat.c207 #ifndef UF_IMMUTABLE
208 # define UF_IMMUTABLE 0x00000002 macro
545 ADD_INT_MACRO(module, UF_IMMUTABLE); in stat_exec()
/external/python/cpython2/Lib/
Dstat.py86 UF_IMMUTABLE = 0x00000002 variable
/external/python/cpython3/Lib/
Dstat.py115 UF_IMMUTABLE = 0x00000002 # file may not be changed variable
/external/python/cpython2/Lib/test/
Dtest_posix.py457 chflags_func(target_file, st.st_flags | stat.UF_IMMUTABLE)
466 self.assertEqual(st.st_flags | stat.UF_IMMUTABLE, new_st.st_flags)
495 dummy_symlink_st.st_flags | stat.UF_IMMUTABLE)
507 self.assertEqual(dummy_symlink_st.st_flags | stat.UF_IMMUTABLE,
/external/e2fsprogs/lib/ext2fs/
Dmkjournal.c499 retval = fchflags (fd, UF_NODUMP|UF_IMMUTABLE); in ext2fs_add_journal_inode2()
/external/python/cpython2/Doc/library/
Dstat.rst297 .. data:: UF_IMMUTABLE
Dos.rst1039 * :data:`stat.UF_IMMUTABLE`
/external/python/cpython3/Lib/test/
Dtest_posix.py902 flags = st.st_flags | stat.UF_IMMUTABLE
913 self.assertEqual(st.st_flags | stat.UF_IMMUTABLE, new_st.st_flags)
945 flags = dummy_symlink_st.st_flags | stat.UF_IMMUTABLE
958 self.assertEqual(dummy_symlink_st.st_flags | stat.UF_IMMUTABLE,
Dtest_tempfile.py1489 flags = stat.UF_IMMUTABLE | stat.UF_NOUNLINK
/external/python/cpython3/Doc/library/
Dstat.rst357 .. data:: UF_IMMUTABLE
Dos.rst1640 * :data:`stat.UF_IMMUTABLE`
/external/rust/crates/libc/src/unix/bsd/netbsdlike/
Dmod.rs628 pub const UF_IMMUTABLE: ::c_ulong = 0x00000002; constant
/external/rust/crates/libc/src/unix/bsd/freebsdlike/
Dmod.rs1282 pub const UF_IMMUTABLE: ::c_ulong = 0x00000002; constant
/external/e2fsprogs/
Dconfigure.ac1099 [struct stat stat; stat.st_flags |= UF_IMMUTABLE;],
Dconfigure13083 struct stat stat; stat.st_flags |= UF_IMMUTABLE;
/external/rust/crates/libc/src/unix/bsd/apple/
Dmod.rs3298 pub const UF_IMMUTABLE: ::c_uint = 0x00000002; constant
/external/python/cpython2/Misc/NEWS.d/
D2.7.4rc1.rst2791 ZFS always returns EOPNOTSUPP when attempting to set the UF_IMMUTABLE flag
/external/python/cpython2/Doc/whatsnew/
D2.6.rst2170 :const:`UF_IMMUTABLE` to signal the file may not be changed and
/external/python/cpython3/Doc/whatsnew/
D2.6.rst2174 :const:`UF_IMMUTABLE` to signal the file may not be changed and
/external/python/cpython3/Misc/
DHISTORY6722 UF_IMMUTABLE flag (via either chflags or lchflags); refactor affected tests in