Searched refs:mPollFds (Results 1 – 2 of 2) sorted by relevance
517 mPollFds = NULL; in Monitor()592 mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd), mPollSize); in run()594 LOG_ALWAYS_FATAL_IF((mPollFds == NULL), "initial calloc failed on mPollFds with a size of %d", in run()599 mPollFds[0].fd = mCtrlSocketPair[0]; in run()600 mPollFds[0].events = POLLIN; in run()605 int pollResults = poll(mPollFds, pollCount, 10000000); in run()611 if (mPollFds[i].revents != 0) { in run()614 i, mPollFds[i].revents); in run()617 mPollFds[i].revents = 0; in run()620 if (VDBG) ALOGD("controlSocket shows revent= %d", mPollFds[0].revents); in run()[all …]
95 struct pollfd *mPollFds; variable