Home
last modified time | relevance | path

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

/libcore/luni/src/main/java/libcore/io/
DForwardingOs.java480 …public FileDescriptor memfd_create(String name, int flags) throws ErrnoException { return os.memfd… in memfd_create() method in ForwardingOs
DOs.java418 public FileDescriptor memfd_create(String name, int flags) throws ErrnoException; in memfd_create() method
DLinux.java125 public native FileDescriptor memfd_create(String name, int flags) throws ErrnoException; in memfd_create() method in Linux
/libcore/luni/src/main/java/android/system/
DOs.java449 …c @NonNull FileDescriptor memfd_create(@NonNull String name, int flags) throws ErrnoException { re… in memfd_create() method in Os
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java2085 fd = Os.memfd_create("test_memfd", 0);
2116 fd = Os.memfd_create("test_memfd", 0);
2129 fd = Os.memfd_create("test_memfd", MFD_CLOEXEC);
2145 expectException(() -> Os.memfd_create(null, 0), NullPointerException.class, null,
2148 expectException(() -> Os.memfd_create("test_memfd", 0xffff), ErrnoException.class, EINVAL,
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp1913 int fd = throwIfMinusOne(env, "memfd_create", memfd_create(name.c_str(), flags)); in Linux_memfd_create()
2836 NATIVE_METHOD(Linux, memfd_create, "(Ljava/lang/String;I)Ljava/io/FileDescriptor;"),
/libcore/api/
Dcurrent.txt84 …method @NonNull public static java.io.FileDescriptor memfd_create(@NonNull String, int) throws and…