/third_party/ltp/testcases/kernel/syscalls/memfd_create/ |
D | memfd_create02.c | 43 {"invalid flags fail 3", "test", ~MFD_CLOEXEC, EINVAL }, 48 {"valid flags 1 pass", "test", MFD_CLOEXEC, 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/skia/third_party/externals/swiftshader/src/System/Linux/ |
D | MemFd.cpp | 24 #ifndef MFD_CLOEXEC 25 # define MFD_CLOEXEC 0x0001U macro 72 fd_ = syscall(__NR_memfd_create, name, MFD_CLOEXEC); in allocate()
|
/third_party/ltp/include/lapi/ |
D | memfd.h | 10 #ifndef MFD_CLOEXEC 11 # define MFD_CLOEXEC 0x0001U macro
|
/third_party/pulseaudio/src/pulsecore/ |
D | memfd-wrappers.h | 43 #ifndef MFD_CLOEXEC 44 #define MFD_CLOEXEC 0x0001U macro
|
/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 | 101 #define MFD_CLOEXEC 0x0001U macro
|
/third_party/musl/porting/liteos_m/kernel/include/sys/ |
D | mman.h | 107 #define MFD_CLOEXEC 0x0001U macro
|
/third_party/musl/ndk_musl_include/sys/ |
D | mman.h | 107 #define MFD_CLOEXEC 0x0001U macro
|
/third_party/musl/porting/liteos_a/kernel/include/sys/ |
D | mman.h | 110 #define MFD_CLOEXEC 0x0001U macro
|
/third_party/musl/include/sys/ |
D | mman.h | 107 #define MFD_CLOEXEC 0x0001U macro
|
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/ |
D | mman.h | 107 #define MFD_CLOEXEC 0x0001U macro
|
/third_party/musl/porting/uniproton/kernel/include/sys/ |
D | mman.h | 107 #define MFD_CLOEXEC 0x0001U 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/gstreamer/gstplugins_bad/ext/wpe/wpe-extension/ |
D | gstwpeaudiosink.c | 96 fds[0] = memfd_create ("gstwpe-shm", MFD_CLOEXEC); in render()
|
/third_party/mesa3d/src/drm-shim/ |
D | device.c | 87 shim_device.mem_fd = memfd_create("shim mem", MFD_CLOEXEC); in drm_shim_device_init()
|
/third_party/pcre2/pcre2/src/sljit/ |
D | sljitProtExecAllocator.c | 118 fd = memfd_create("sljit", MFD_CLOEXEC); in create_tempfile()
|
/third_party/python/Lib/test/ |
D | test_os.py | 3658 fd = os.memfd_create("Hi", os.MFD_CLOEXEC)
|
/third_party/python/Doc/library/ |
D | os.rst | 3279 .. function:: memfd_create(name[, flags=os.MFD_CLOEXEC]) 3298 .. data:: MFD_CLOEXEC
|
/third_party/python/Modules/clinic/ |
D | posixmodule.c.h | 7791 unsigned int flags = MFD_CLOEXEC; in os_memfd_create()
|
/third_party/python/Modules/ |
D | posixmodule.c | 15345 if (PyModule_AddIntMacro(m, MFD_CLOEXEC)) return -1; in all_ins()
|