OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fcntlflock
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/java/libcore/io/
ForwardingOs.java
52
public int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException { return os.
fcntlFlock
(fd, cmd, arg); }
Os.java
43
public int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
Posix.java
46
public native int
fcntlFlock
(FileDescriptor fd, int cmd, StructFlock arg) throws ErrnoException;
/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/native/
libcore_io_Posix.cpp
[
all
...]
Completed in 154 milliseconds