OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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
123
/** @hide */ public static int
fcntlInt
(FileDescriptor fd, int cmd, int arg) throws ErrnoException { return Libcore.os.
fcntlInt
(fd, cmd, arg); }
Completed in 202 milliseconds