Home
last modified time | relevance | path

Searched refs:MFD_CLOEXEC (Results 1 – 23 of 23) sorted by relevance

/third_party/ltp/testcases/kernel/syscalls/memfd_create/
Dmemfd_create02.c43 {"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 },
Dmemfd_create_common.h24 #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/
DMemFd.cpp24 #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/
Dmemfd.h10 #ifndef MFD_CLOEXEC
11 # define MFD_CLOEXEC 0x0001U macro
/third_party/pulseaudio/src/pulsecore/
Dmemfd-wrappers.h43 #ifndef MFD_CLOEXEC
44 #define MFD_CLOEXEC 0x0001U macro
/third_party/mesa3d/src/util/
Danon_file.c121 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/
Dos-compatibility.c124 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/
Dmman.h101 #define MFD_CLOEXEC 0x0001U macro
/third_party/musl/porting/liteos_m/kernel/include/sys/
Dmman.h107 #define MFD_CLOEXEC 0x0001U macro
/third_party/musl/ndk_musl_include/sys/
Dmman.h107 #define MFD_CLOEXEC 0x0001U macro
/third_party/musl/porting/liteos_a/kernel/include/sys/
Dmman.h110 #define MFD_CLOEXEC 0x0001U macro
/third_party/musl/include/sys/
Dmman.h107 #define MFD_CLOEXEC 0x0001U macro
/third_party/musl/porting/liteos_m_iccarm/kernel/include/sys/
Dmman.h107 #define MFD_CLOEXEC 0x0001U macro
/third_party/musl/porting/uniproton/kernel/include/sys/
Dmman.h107 #define MFD_CLOEXEC 0x0001U macro
/third_party/gstreamer/gstplugins_bad/ext/wayland/
Dwlshmallocator.c53 fd = memfd_create ("gst-wayland-shm", MFD_CLOEXEC | MFD_ALLOW_SEALING); in gst_wl_shm_allocator_alloc()
/third_party/weston/shared/
Dos-compatibility.c172 fd = memfd_create("weston-shared", MFD_CLOEXEC | MFD_ALLOW_SEALING); in os_create_anonymous_file()
/third_party/gstreamer/gstplugins_bad/ext/wpe/wpe-extension/
Dgstwpeaudiosink.c96 fds[0] = memfd_create ("gstwpe-shm", MFD_CLOEXEC); in render()
/third_party/mesa3d/src/drm-shim/
Ddevice.c87 shim_device.mem_fd = memfd_create("shim mem", MFD_CLOEXEC); in drm_shim_device_init()
/third_party/pcre2/pcre2/src/sljit/
DsljitProtExecAllocator.c118 fd = memfd_create("sljit", MFD_CLOEXEC); in create_tempfile()
/third_party/python/Lib/test/
Dtest_os.py3658 fd = os.memfd_create("Hi", os.MFD_CLOEXEC)
/third_party/python/Doc/library/
Dos.rst3279 .. function:: memfd_create(name[, flags=os.MFD_CLOEXEC])
3298 .. data:: MFD_CLOEXEC
/third_party/python/Modules/clinic/
Dposixmodule.c.h7791 unsigned int flags = MFD_CLOEXEC; in os_memfd_create()
/third_party/python/Modules/
Dposixmodule.c15345 if (PyModule_AddIntMacro(m, MFD_CLOEXEC)) return -1; in all_ins()