/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 | fsetflags.c | 65 #ifdef UF_IMMUTABLE in fsetflags() 67 bsd_flags |= UF_IMMUTABLE; in fsetflags()
|
D | fgetflags.c | 60 #ifdef UF_IMMUTABLE in fgetflags() 61 if (buf.st_flags & UF_IMMUTABLE) in fgetflags()
|
/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
|
D | shutil.py | 848 immutable_states = [stat.UF_IMMUTABLE, stat.SF_IMMUTABLE]
|
/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/rust/crates/nix/src/sys/ |
D | stat.rs | 135 UF_IMMUTABLE;
|
/external/e2fsprogs/lib/ext2fs/ |
D | mkjournal.c | 553 retval = fchflags (fd, UF_NODUMP|UF_IMMUTABLE); in ext2fs_add_journal_inode3()
|
/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 | 927 flags = st.st_flags | stat.UF_IMMUTABLE 938 self.assertEqual(st.st_flags | stat.UF_IMMUTABLE, new_st.st_flags) 971 flags = dummy_symlink_st.st_flags | stat.UF_IMMUTABLE 984 self.assertEqual(dummy_symlink_st.st_flags | stat.UF_IMMUTABLE,
|
D | test_tempfile.py | 1658 flags = stat.UF_IMMUTABLE | stat.UF_NOUNLINK
|
/external/python/cpython3/Doc/library/ |
D | stat.rst | 357 .. data:: UF_IMMUTABLE
|
/external/rust/crates/libc/src/unix/bsd/freebsdlike/ |
D | mod.rs | 1351 pub const UF_IMMUTABLE: ::c_ulong = 0x00000002; constant
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/openbsd/ |
D | mod.rs | 1634 pub const UF_IMMUTABLE: ::c_uint = 0x00000002; constant
|
/external/e2fsprogs/ |
D | configure.ac | 1174 …OGRAM([[#include <sys/stat.h>]], [[struct stat stat; stat.st_flags |= UF_IMMUTABLE;]])],[e2fsprogs…
|
D | configure | 12862 struct stat stat; stat.st_flags |= UF_IMMUTABLE;
|
/external/rust/crates/libc/src/unix/bsd/netbsdlike/netbsd/ |
D | mod.rs | 2256 pub const UF_IMMUTABLE: ::c_ulong = 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/rust/crates/libc/src/unix/bsd/apple/ |
D | mod.rs | 4599 pub const UF_IMMUTABLE: ::c_uint = 0x00000002; constant
|
/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
|