/third_party/ltp/testcases/kernel/syscalls/memfd_create/ |
D | memfd_create01.c | 223 {MFD_ALLOW_SEALING, &test_basic, "Basic tests + set/get seals"}, 226 {MFD_ALLOW_SEALING, &test_seal_write, "Write seal"}, 227 {MFD_ALLOW_SEALING, &test_seal_shrink, "Shrink seal"}, 228 {MFD_ALLOW_SEALING, &test_seal_grow, "Grow seal"}, 229 {MFD_ALLOW_SEALING, &test_seal_resize, "Resize seal"}, 231 {MFD_ALLOW_SEALING, &test_share_dup, "Seals shared for dup"}, 232 {MFD_ALLOW_SEALING, &test_share_mmap, "Seals shared for mmap"}, 233 {MFD_ALLOW_SEALING, &test_share_open, "Seals shared for open"}, 260 if (!MFD_FLAGS_AVAILABLE(MFD_ALLOW_SEALING)) { in setup() 262 "memfd_create(%u) not implemented", MFD_ALLOW_SEALING); in setup()
|
D | memfd_create02.c | 44 {"invalid flags fail 4", "test", ~MFD_ALLOW_SEALING, EINVAL }, 49 {"valid flags 2 pass", "test", MFD_ALLOW_SEALING, 0 }, 50 {"valid flags 3 pass", "test", MFD_CLOEXEC | MFD_ALLOW_SEALING, 0 },
|
D | memfd_create_common.h | 24 #define FLAGS_ALL_ARRAY_INITIALIZER {MFD_CLOEXEC, MFD_ALLOW_SEALING} 25 #define FLAGS_ALL_MASK (MFD_CLOEXEC | MFD_ALLOW_SEALING)
|
/third_party/ltp/include/lapi/ |
D | memfd.h | 13 #ifndef MFD_ALLOW_SEALING 14 # define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/pulseaudio/src/pulsecore/ |
D | memfd-wrappers.h | 47 #ifndef MFD_ALLOW_SEALING 48 #define MFD_ALLOW_SEALING 0x0002U macro
|
D | shm.c | 164 fd = memfd_create("pulseaudio", MFD_ALLOW_SEALING); in sharedmem_create()
|
/third_party/mesa3d/src/util/ |
D | anon_file.c | 121 fd = memfd_create(debug_name, MFD_CLOEXEC | MFD_ALLOW_SEALING); in os_create_anonymous_file() 125 fd = syscall(SYS_memfd_create, debug_name, MFD_CLOEXEC | MFD_ALLOW_SEALING); in os_create_anonymous_file()
|
/third_party/wayland_standard/cursor/ |
D | os-compatibility.c | 124 fd = memfd_create("wayland-cursor", MFD_CLOEXEC | MFD_ALLOW_SEALING); in os_create_anonymous_file()
|
/third_party/musl/porting/liteos_a_newlib/kernel/include/sys/ |
D | mman.h | 102 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | mman.h | 108 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/musl/ndk_musl_include/sys/ |
D | mman.h | 108 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | mman.h | 111 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/musl/include/sys/ |
D | mman.h | 108 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | mman.h | 108 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | mman.h | 108 #define MFD_ALLOW_SEALING 0x0002U macro
|
/third_party/gstreamer/gstplugins_bad/ext/wayland/ |
D | wlshmallocator.c | 53 fd = memfd_create ("gst-wayland-shm", MFD_CLOEXEC | MFD_ALLOW_SEALING); in gst_wl_shm_allocator_alloc()
|
/third_party/weston/shared/ |
D | os-compatibility.c | 172 fd = memfd_create("weston-shared", MFD_CLOEXEC | MFD_ALLOW_SEALING); in os_create_anonymous_file()
|
/third_party/python/Modules/ |
D | posixmodule.c | 15346 if (PyModule_AddIntMacro(m, MFD_ALLOW_SEALING)) return -1; in all_ins()
|
/third_party/python/Doc/library/ |
D | os.rst | 3299 MFD_ALLOW_SEALING
|