OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:StructPollfd
(Results
1 - 7
of
7
) sorted by null
/libcore/luni/src/main/java/libcore/io/
StructPollfd.java
25
public final class
StructPollfd
{
46
return "
StructPollfd
[fd=" + fd + ",events=" + events + ",revents=" + revents + "]";
IoBridge.java
190
StructPollfd
[] pollFds = new
StructPollfd
[] { new
StructPollfd
() };
BlockGuardOs.java
101
@Override public int poll(
StructPollfd
[] fds, int timeoutMs) throws ErrnoException {
Os.java
83
public int poll(
StructPollfd
[] fds, int timeoutMs) throws ErrnoException;
Posix.java
84
public native int poll(
StructPollfd
[] fds, int timeoutMs) throws ErrnoException;
ForwardingOs.java
90
public int poll(
StructPollfd
[] fds, int timeoutMs) throws ErrnoException { return os.poll(fds, timeoutMs); }
/libcore/luni/src/main/java/java/nio/
SelectorImpl.java
42
import libcore.io.
StructPollfd
;
81
private final UnsafeArrayList<
StructPollfd
> pollFds = new UnsafeArrayList<
StructPollfd
>(
StructPollfd
.class, 8);
96
pollFds.add(new
StructPollfd
());
198
StructPollfd
pollFd = pollFds.get(i);
224
pollFds.add(new
StructPollfd
());
241
StructPollfd
pollFd = pollFds.get(i);
Completed in 36 milliseconds