Home
last modified time | relevance | path

Searched refs:memfd_create (Results 1 – 6 of 6) sorted by relevance

/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java1531 fd = Os.memfd_create("test_memfd", 0); in testMemfdCreate()
1561 fd = Os.memfd_create("test_memfd", 0); in testMemfdCreateFlags()
1574 fd = Os.memfd_create("test_memfd", MFD_CLOEXEC); in testMemfdCreateFlags()
1589 expectException(() -> Os.memfd_create(null, 0), NullPointerException.class, null, in testMemfdCreateErrno()
1592 expectException(() -> Os.memfd_create("test_memfd", 0xffff), ErrnoException.class, EINVAL, in testMemfdCreateErrno()
/libcore/luni/src/main/java/android/system/
DOs.java367 …c @NonNull FileDescriptor memfd_create(@NonNull String name, int flags) throws ErrnoException { re… in memfd_create() method in Os
/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java153 …public FileDescriptor memfd_create(String name, int flags) throws ErrnoException { return os.memfd… in memfd_create() method in ForwardingOs
DOs.java126 public FileDescriptor memfd_create(String name, int flags) throws ErrnoException; in memfd_create() method
DLinux.java124 public native FileDescriptor memfd_create(String name, int flags) throws ErrnoException; in memfd_create() method in Linux
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1862 int fd = throwIfMinusOne(env, "memfd_create", memfd_create(name.c_str(), flags)); in Linux_memfd_create()
2655 NATIVE_METHOD(Linux, memfd_create, "(Ljava/lang/String;I)Ljava/io/FileDescriptor;"),