Home
last modified time | relevance | path

Searched refs:__NR_memfd_create (Results 1 – 12 of 12) sorted by relevance

/aosp12/art/libartbase/base/
H A Dmemfd.cc39 #if defined(__linux__) && !defined(__NR_memfd_create)
41 #define __NR_memfd_create 319 macro
43 #define __NR_memfd_create 356 macro
49 #if defined(__NR_memfd_create)
66 return syscall(__NR_memfd_create, name, flags); in memfd_create()
/aosp12/system/core/fs_mgr/libdm/
H A Dtest_util.cpp34 unique_fd fd(syscall(__NR_memfd_create, name.c_str(), MFD_ALLOW_SEALING)); in CreateTempFile()
/aosp12/system/core/libcutils/
H A Dashmem-dev.cpp166 syscall(__NR_memfd_create, "test_android_memfd", MFD_CLOEXEC | MFD_ALLOW_SEALING)); in __has_memfd_support()
340 android::base::unique_fd fd(syscall(__NR_memfd_create, name, MFD_CLOEXEC | MFD_ALLOW_SEALING)); in memfd_create_region()
/aosp12/system/core/fs_mgr/liblp/
H A Dio_test.cpp52 unique_fd fd(syscall(__NR_memfd_create, "fake_disk", MFD_ALLOW_SEALING)); in CreateFakeDisk()
429 unique_fd fd(syscall(__NR_memfd_create, "image_file", 0)); in TEST_F()
444 unique_fd fd(syscall(__NR_memfd_create, "image_file", 0)); in TEST_F()
/aosp12/bionic/libc/kernel/uapi/asm-x86/asm/
H A Dunistd_64.h340 #define __NR_memfd_create 319 macro
H A Dunistd_32.h373 #define __NR_memfd_create 356 macro
H A Dunistd_x32.h296 #define __NR_memfd_create (__X32_SYSCALL_BIT + 319) macro
/aosp12/bionic/libc/kernel/uapi/asm-generic/
H A Dunistd.h345 #define __NR_memfd_create 279 macro
/aosp12/bionic/libc/include/bits/
H A Dglibc-syscalls.h567 #if defined(__NR_memfd_create)
568 #define SYS_memfd_create __NR_memfd_create
/aosp12/bionic/libc/kernel/uapi/asm-arm/asm/
H A Dunistd-common.h361 #define __NR_memfd_create (__NR_SYSCALL_BASE + 385) macro
/aosp12/frameworks/av/services/camera/libcameraservice/api2/
H A DHeicCompositeStream.cpp376 int memfd = syscall(__NR_memfd_create, "HEIF-try-memfd", MFD_CLOEXEC); in isInMemoryTempFileSupported()
923 inputFrame.fileFd = syscall(__NR_memfd_create, tempOutputFile.str().c_str(), MFD_CLOEXEC); in startMuxerForInputFrame()
/aosp12/system/core/fs_mgr/libsnapshot/
H A Dcow_snapuserd_test.cpp175 unique_fd fd(syscall(__NR_memfd_create, name.c_str(), MFD_ALLOW_SEALING)); in CreateTempFile()