Searched refs:mPollFds (Results 1 – 2 of 2) sorted by relevance
287 mPollFds[0].fd = mControl; in start()288 mPollFds[0].events = POLLIN; in start()289 mPollFds[1].fd = mEventFd; in start()290 mPollFds[1].events = POLLIN; in start()309 if (poll(mPollFds, 2, 0) == -1) { in waitEvents()313 if (mPollFds[0].revents & POLLIN) { in waitEvents()314 mPollFds[0].revents = 0; in waitEvents()319 if (mPollFds[1].revents & POLLIN) { in waitEvents()320 mPollFds[1].revents = 0; in waitEvents()
71 struct pollfd mPollFds[2]; variable