Home
last modified time | relevance | path

Searched refs:fcntlInt (Results 1 – 8 of 8) sorted by relevance

/libcore/ojluni/src/main/java/java/io/
DFileDescriptor.java181 int newDescriptor = Os.fcntlInt(this, F_DUPFD_CLOEXEC, 0); in cloneForFork()
/libcore/luni/src/main/java/libcore/io/
DIoUtils.java216 Libcore.os.fcntlInt(fd, F_SETFL, flags); in setBlocking()
DForwardingOs.java103 …public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlIn… in fcntlInt() method in ForwardingOs
DOs.java78 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; in fcntlInt() method
DLinux.java78 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException; in fcntlInt() method in Linux
/libcore/luni/src/test/java/libcore/android/system/
DOsTest.java81 Os.fcntlInt(fis.getFD(), F_SETFD, FD_CLOEXEC); in testFcntlInt()
96 Os.fcntlInt(fd, F_SETFL, SOCK_DGRAM | O_NONBLOCK); in testFcntlInt_udpSocket()
100 Os.fcntlInt(fd, F_SETFL, SOCK_DGRAM); in testFcntlInt_udpSocket()
111 Os.fcntlInt(fd, unknownCmd, 0); in testFcntlInt_invalidCmd()
122 Os.fcntlInt(null, F_SETFL, O_NONBLOCK); in testFcntlInt_nullFd()
/libcore/luni/src/main/java/android/system/
DOs.java157 …public static int fcntlInt(@NonNull FileDescriptor fd, int cmd, int arg) throws ErrnoException { r… in fcntlInt() method in Os
/libcore/luni/src/main/native/
Dlibcore_io_Linux.cpp2609 NATIVE_METHOD(Linux, fcntlInt, "(Ljava/io/FileDescriptor;II)I"),