/external/e2fsprogs/lib/e2p/ |
D | setflags.c | 45 #ifdef UF_IMMUTABLE in setflags() 47 bsd_flags |= UF_IMMUTABLE; in setflags()
|
D | getflags.c | 40 #ifdef UF_IMMUTABLE in getflags() 41 if (buf.st_flags & UF_IMMUTABLE) in getflags()
|
D | fgetflags.c | 57 #ifdef UF_IMMUTABLE in fgetflags() 58 if (buf.st_flags & UF_IMMUTABLE) in fgetflags()
|
D | fsetflags.c | 62 #ifdef UF_IMMUTABLE in fsetflags() 64 bsd_flags |= UF_IMMUTABLE; in fsetflags()
|
/external/python/cpython3/Modules/ |
D | _stat.c | 207 #ifndef UF_IMMUTABLE 208 # define UF_IMMUTABLE 0x00000002 macro 545 ADD_INT_MACRO(module, UF_IMMUTABLE); in stat_exec()
|
/external/python/cpython2/Lib/ |
D | stat.py | 86 UF_IMMUTABLE = 0x00000002 variable
|
/external/python/cpython3/Lib/ |
D | stat.py | 115 UF_IMMUTABLE = 0x00000002 # file may not be changed variable
|
/external/python/cpython2/Lib/test/ |
D | test_posix.py | 457 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/ |
D | mkjournal.c | 499 retval = fchflags (fd, UF_NODUMP|UF_IMMUTABLE); in ext2fs_add_journal_inode2()
|
/external/python/cpython2/Doc/library/ |
D | stat.rst | 297 .. data:: UF_IMMUTABLE
|
D | os.rst | 1039 * :data:`stat.UF_IMMUTABLE`
|
/external/python/cpython3/Lib/test/ |
D | test_posix.py | 902 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,
|
D | test_tempfile.py | 1489 flags = stat.UF_IMMUTABLE | stat.UF_NOUNLINK
|
/external/python/cpython3/Doc/library/ |
D | stat.rst | 357 .. data:: UF_IMMUTABLE
|
D | os.rst | 1640 * :data:`stat.UF_IMMUTABLE`
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/ |
D | mod.rs | 628 pub const UF_IMMUTABLE: ::c_ulong = 0x00000002; constant
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/ |
D | mod.rs | 1282 pub const UF_IMMUTABLE: ::c_ulong = 0x00000002; constant
|
/external/e2fsprogs/ |
D | configure.ac | 1099 [struct stat stat; stat.st_flags |= UF_IMMUTABLE;],
|
D | configure | 13083 struct stat stat; stat.st_flags |= UF_IMMUTABLE;
|
/external/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 3298 pub const UF_IMMUTABLE: ::c_uint = 0x00000002; constant
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7.4rc1.rst | 2791 ZFS always returns EOPNOTSUPP when attempting to set the UF_IMMUTABLE flag
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.6.rst | 2170 :const:`UF_IMMUTABLE` to signal the file may not be changed and
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.6.rst | 2174 :const:`UF_IMMUTABLE` to signal the file may not be changed and
|
/external/python/cpython3/Misc/ |
D | HISTORY | 6722 UF_IMMUTABLE flag (via either chflags or lchflags); refactor affected tests in
|