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

  /libcore/luni/src/main/java/android/system/
StructFlock.java 28 public final class StructFlock {
Os.java 116 /** @hide */ public static int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return Libcore.os.fcntlFlock(fd, cmd, arg); }
  /libcore/luni/src/main/java/java/nio/
FileChannelImpl.java 21 import android.system.StructFlock;
113 StructFlock flock = new StructFlock();
191 StructFlock flock = new StructFlock();
  /libcore/luni/src/main/java/libcore/io/
Os.java 22 import android.system.StructFlock;
61 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException;
Posix.java 22 import android.system.StructFlock;
64 public native int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException;
ForwardingOs.java 22 import android.system.StructFlock;
70 public int fcntlFlock(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return os.fcntlFlock(fd, cmd, arg); }

Completed in 146 milliseconds