HomeSort by relevance Sort by last modified time
    Searched refs:fcntlInt (Results 1 - 9 of 9) sorted by null

  /libcore/ojluni/src/main/java/java/io/
FileDescriptor.java 165 return new FileDescriptor(Os.fcntlInt(new FileDescriptor(fd), F_DUPFD_CLOEXEC, 0));
  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 97 Libcore.os.fcntlInt(fd, F_SETFL, flags);
Os.java 67 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException;
ForwardingOs.java 82 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlInt(fd, cmd, arg); }
Linux.java 73 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException;
  /libcore/luni/src/main/java/android/system/
Os.java 142 /** @hide */ public static int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return Libcore.os.fcntlInt(fd, cmd, arg); }
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 207 Os.fcntlInt(childPipeFd, F_SETFD, 0);
    [all...]
  /libcore/luni/src/test/java/libcore/io/
OsTest.java 68 Libcore.os.fcntlInt(fis.getFD(), F_SETFD, FD_CLOEXEC);
  /libcore/luni/src/main/native/
libcore_io_Linux.cpp     [all...]

Completed in 270 milliseconds