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

  /libcore/luni/src/main/java/libcore/io/
IoUtils.java 97 Libcore.os.fcntlInt(fd, F_SETFL, flags);
Os.java 62 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException;
Posix.java 65 public native int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException;
ForwardingOs.java 71 public int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return os.fcntlInt(fd, cmd, arg); }
  /frameworks/base/core/java/com/android/internal/os/
ZygoteConnection.java 194 Os.fcntlInt(childPipeFd, F_SETFD, 0);
  /libcore/luni/src/main/java/android/system/
Os.java 117 /** @hide */ public static int fcntlInt(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return Libcore.os.fcntlInt(fd, cmd, arg); }

Completed in 118 milliseconds