Home
last modified time | relevance | path

Searched refs:mPollFds (Results 1 – 2 of 2) sorted by relevance

/system/netd/
DMDnsSdListener.cpp548 mPollFds = (struct pollfd *)calloc(sizeof(struct pollfd), mPollSize); in run()
551 mPollFds[0].fd = mCtrlSocketPair[0]; in run()
552 mPollFds[0].events = POLLIN; in run()
557 int pollResults = poll(mPollFds, pollCount, 10000000); in run()
563 if (mPollFds[i].revents != 0) { in run()
566 i, mPollFds[i].revents); in run()
569 mPollFds[i].revents = 0; in run()
572 if (VDBG) ALOGD("controlSocket shows revent= %d", mPollFds[0].revents); in run()
573 switch (mPollFds[0].revents) { in run()
583 mPollFds[0].revents = 0; in run()
[all …]
DMDnsSdListener.h95 struct pollfd *mPollFds; variable