Searched refs:memfd_create (Results 1 – 7 of 7) sorted by relevance
/libcore/luni/src/main/java/libcore/io/ |
D | ForwardingOs.java | 480 …public FileDescriptor memfd_create(String name, int flags) throws ErrnoException { return os.memfd… in memfd_create() method in ForwardingOs
|
D | Os.java | 418 public FileDescriptor memfd_create(String name, int flags) throws ErrnoException; in memfd_create() method
|
D | Linux.java | 125 public native FileDescriptor memfd_create(String name, int flags) throws ErrnoException; in memfd_create() method in Linux
|
/libcore/luni/src/main/java/android/system/ |
D | Os.java | 449 …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/ |
D | OsTest.java | 2085 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/ |
D | libcore_io_Linux.cpp | 1913 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/ |
D | current.txt | 84 …method @NonNull public static java.io.FileDescriptor memfd_create(@NonNull String, int) throws and…
|