Searched refs:F_SEAL_WRITE (Results 1 – 12 of 12) sorted by relevance
/external/ltp/testcases/kernel/syscalls/memfd_create/ |
D | memfd_create01.c | 26 CHECK_MFD_ADD_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 27 CHECK_MFD_HAS_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 30 CHECK_MFD_ADD_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 31 CHECK_MFD_HAS_SEALS(fd, F_SEAL_SHRINK | F_SEAL_WRITE); in test_basic() 36 F_SEAL_WRITE | F_SEAL_SEAL); in test_basic() 51 F_SEAL_SHRINK | F_SEAL_GROW | F_SEAL_WRITE); in test_no_sealing_without_flag() 62 CHECK_MFD_ADD_SEALS(fd, F_SEAL_WRITE); in test_seal_write() 63 CHECK_MFD_HAS_SEALS(fd, F_SEAL_WRITE); in test_seal_write() 136 CHECK_MFD_ADD_SEALS(fd, F_SEAL_WRITE); in test_share_dup() 137 CHECK_MFD_HAS_SEALS(fd, F_SEAL_WRITE); in test_share_dup() [all …]
|
/external/linux-kselftest/tools/testing/selftests/memfd/ |
D | memfd_test.c | 703 F_SEAL_WRITE); in test_basic() 705 F_SEAL_WRITE); in test_basic() 709 F_SEAL_WRITE); in test_basic() 711 F_SEAL_WRITE); in test_basic() 717 F_SEAL_WRITE | in test_basic() 733 F_SEAL_WRITE); in test_basic() 752 mfd_assert_add_seals(fd, F_SEAL_WRITE); in test_seal_write() 753 mfd_assert_has_seals(fd, F_SEAL_WRITE); in test_seal_write() 900 mfd_assert_add_seals(fd, F_SEAL_WRITE); in test_share_dup() 901 mfd_assert_has_seals(fd, F_SEAL_WRITE); in test_share_dup() [all …]
|
D | fuse_test.c | 185 r = mfd_busy_add_seals(global_mfd, F_SEAL_WRITE); in sealing_thread_fn() 193 mfd_assert_add_seals(global_mfd, F_SEAL_WRITE); in sealing_thread_fn() 297 was_sealed = mfd_assert_get_seals(mfd) & F_SEAL_WRITE; in main() 302 mfd_assert_has_seals(mfd, F_SEAL_WRITE); in main()
|
/external/strace/xlat/ |
D | f_seals.h | 27 #if defined(F_SEAL_WRITE) || (defined(HAVE_DECL_F_SEAL_WRITE) && HAVE_DECL_F_SEAL_WRITE) 29 static_assert((F_SEAL_WRITE) == (8), "F_SEAL_WRITE != 8"); 32 # define F_SEAL_WRITE 8 48 XLAT(F_SEAL_WRITE),
|
D | f_seals.in | 4 F_SEAL_WRITE 8
|
/external/ltp/include/lapi/ |
D | fcntl.h | 74 #ifndef F_SEAL_WRITE 75 # define F_SEAL_WRITE 0x0008 /* prevent writes */ macro
|
/external/crosvm/sys_util/src/ |
D | shm.rs | 12 F_GET_SEALS, F_SEAL_GROW, F_SEAL_SEAL, F_SEAL_SHRINK, F_SEAL_WRITE, MFD_ALLOW_SEALING, 77 self.0 & F_SEAL_WRITE != 0 in write_seal() 83 self.0 |= F_SEAL_WRITE; in set_write_seal()
|
/external/perfetto/src/tracing/ipc/ |
D | memfd.h | 40 #define F_SEAL_WRITE 0x0008 macro
|
/external/kernel-headers/original/uapi/linux/ |
D | fcntl.h | 43 #define F_SEAL_WRITE 0x0008 /* prevent writes */ macro
|
/external/python/cpython3/Modules/ |
D | fcntlmodule.c | 630 if (PyModule_AddIntMacro(m, F_SEAL_WRITE)) return -1; in all_ins()
|
/external/rust/crates/libc/src/unix/linux_like/ |
D | mod.rs | 473 pub const F_SEAL_WRITE: ::c_int = 0x0008; constant
|
/external/rust/crates/libc/src/fuchsia/ |
D | mod.rs | 1417 pub const F_SEAL_WRITE: ::c_int = 0x0008; constant
|