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

  /frameworks/base/core/java/com/android/internal/os/
ZygoteInit.java 830 StructPollfd[] pollFds = new StructPollfd[fds.size()];
831 for (int i = 0; i < pollFds.length; ++i) {
832 pollFds[i] = new StructPollfd();
833 pollFds[i].fd = fds.get(i);
834 pollFds[i].events = (short) POLLIN;
837 Os.poll(pollFds, -1)
    [all...]
  /libcore/luni/src/main/java/libcore/io/
IoBridge.java 215 StructPollfd[] pollFds = new StructPollfd[] { new StructPollfd() };
216 pollFds[0].fd = fd;
217 pollFds[0].events = (short) POLLOUT;
218 int rc = Libcore.os.poll(pollFds, remainingTimeoutMs);

Completed in 131 milliseconds