Searched refs:mPollFd (Results 1 – 2 of 2) sorted by relevance
298 mPollFd = {.fd = mINotifyFD, .events = POLLIN}; in initialize()311 int pollRet = poll(&mPollFd, /* fd_count= */ 1, /* timeout= */ 250); in threadLoop()314 mPollFd.revents = 0; in threadLoop()318 mPollFd.revents = 0; in threadLoop()320 } else if (mPollFd.revents & POLLERR) { in threadLoop()322 mPollFd.revents = 0; in threadLoop()324 } else if (mPollFd.revents & POLLHUP) { in threadLoop()326 mPollFd.revents = 0; in threadLoop()328 } else if (mPollFd.revents & POLLNVAL) { in threadLoop()330 mPollFd.revents = 0; in threadLoop()[all …]
100 struct pollfd mPollFd = {}; variable