Home
last modified time | relevance | path

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

/external/parameter-framework/remote-processor/
DRemoteProcessorServer.cpp140 struct pollfd _aPollFds[2]; in run() local
142 bzero(_aPollFds, sizeof(_aPollFds)); in run()
145 _aPollFds[0].fd = _pListeningSocket->getFd(); in run()
146 _aPollFds[1].fd = _aiInbandPipe[0]; in run()
147 _aPollFds[0].events = POLLIN; in run()
148 _aPollFds[1].events = POLLIN; in run()
152 poll(_aPollFds, 2, -1); in run()
154 if (_aPollFds[0].revents & POLLIN) { in run()
159 if (_aPollFds[1].revents & POLLIN) { in run()