Searched refs:mPollFds (Results 1 – 2 of 2) sorted by relevance
290 mPollFds[0].fd = mControl; in start()291 mPollFds[0].events = POLLIN; in start()292 mPollFds[1].fd = mEventFd; in start()293 mPollFds[1].events = POLLIN; in start()316 if (poll(mPollFds, 2, POLL_TIMEOUT_MS) == -1) { in waitEvents()320 if (mPollFds[0].revents & POLLIN) { in waitEvents()321 mPollFds[0].revents = 0; in waitEvents()326 if (mPollFds[1].revents & POLLIN) { in waitEvents()327 mPollFds[1].revents = 0; in waitEvents()
77 struct pollfd mPollFds[2]; variable