HomeSort by relevance Sort by last modified time
    Searched refs:pollFds (Results 1 - 2 of 2) sorted by null

  /libcore/luni/src/main/java/java/nio/
SelectorImpl.java 81 private final UnsafeArrayList<StructPollfd> pollFds = new UnsafeArrayList<StructPollfd>(StructPollfd.class, 8);
96 pollFds.add(new StructPollfd());
179 rc = Libcore.os.poll(pollFds.array(), (int) timeout);
198 StructPollfd pollFd = pollFds.get(i);
223 while (pollFds.size() < mutableKeys.size() + 1) {
224 pollFds.add(new StructPollfd());
232 if (pollFds.get(0).revents == POLLIN) {
240 for (int i = 1; i < pollFds.size(); ++i) {
241 StructPollfd pollFd = pollFds.get(i);
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 190 StructPollfd[] pollFds = new StructPollfd[] { new StructPollfd() };
191 pollFds[0].fd = fd;
192 pollFds[0].events = (short) POLLOUT;
193 int rc = Libcore.os.poll(pollFds, remainingTimeoutMs);

Completed in 46 milliseconds