OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ioctlInt
(Results
1 - 5
of
5
) sorted by null
/libcore/luni/src/main/java/libcore/io/
IoBridge.java
58
Libcore.os.
ioctlInt
(fd, FIONREAD, available);
Os.java
91
public int
ioctlInt
(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException;
Posix.java
93
public native int
ioctlInt
(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException;
ForwardingOs.java
99
public int
ioctlInt
(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return os.
ioctlInt
(fd, cmd, arg); }
/libcore/luni/src/main/java/android/system/
Os.java
234
/** @hide */ public static int
ioctlInt
(FileDescriptor fd, int cmd, MutableInt arg) throws ErrnoException { return Libcore.os.
ioctlInt
(fd, cmd, arg); }
Completed in 29 milliseconds