Home | History | Annotate | Download | only in common

Lines Matching refs:mPollFds

63     mPollFds[i].fd = -1;
64 mPollFds[i].events = POLLIN;
165 if (mPollFds[i].fd < 0) {
166 mPollFds[i].fd = clientSocket;
214 if (mPollFds[i].fd == clientSocket) {
215 mPollFds[i].fd = -1;
250 mPollFds[kListenIndex].fd = mSockFd;
251 mPollFds[kListenIndex].events = POLLIN;
268 int ret = ppoll(mPollFds, 1 + kMaxActiveClients, nullptr, &signalMask);
275 if (mPollFds[kListenIndex].revents & POLLIN) {
280 if (mPollFds[i].fd < 0) {
284 if (mPollFds[i].revents & POLLIN) {
285 handleClientData(mPollFds[i].fd);