OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:fcntlFlock
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/java/java/nio/
FileChannelImpl.java
121
success = (Libcore.os.
fcntlFlock
(fd, wait ? F_SETLKW64 : F_SETLK64, flock) != -1);
197
Libcore.os.
fcntlFlock
(fd, F_SETLKW64, flock);
/libcore/luni/src/main/java/libcore/io/
Os.java
61
public int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException;
Posix.java
64
public native int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException;
ForwardingOs.java
70
public int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return os.
fcntlFlock
(fd, cmd, arg); }
/libcore/luni/src/main/java/android/system/
Os.java
116
/** @hide */ public static int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException, InterruptedIOException { return Libcore.os.
fcntlFlock
(fd, cmd, arg); }
Completed in 94 milliseconds