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

  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 122 success = (Libcore.os.fcntlFlock(fd, wait ? F_SETLKW64 : F_SETLK64, flock) != -1);
194 Libcore.os.fcntlFlock(fd, F_SETLKW64, flock);
  /libcore/luni/src/main/java/libcore/io/
Os.java 39 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
Posix.java 42 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
ForwardingOs.java 48 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException { return os.fcntlFlock(fd, cmd, arg); }

Completed in 166 milliseconds