Home
last modified time | relevance | path

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

/frameworks/av/media/mtp/
DMtpFfsHandle.cpp289 mPollFds[0].fd = mControl; in start()
290 mPollFds[0].events = POLLIN; in start()
291 mPollFds[1].fd = mEventFd; in start()
292 mPollFds[1].events = POLLIN; in start()
311 if (poll(mPollFds, 2, POLL_TIMEOUT_MS) == -1) { in waitEvents()
315 if (mPollFds[0].revents & POLLIN) { in waitEvents()
316 mPollFds[0].revents = 0; in waitEvents()
321 if (mPollFds[1].revents & POLLIN) { in waitEvents()
322 mPollFds[1].revents = 0; in waitEvents()
DMtpFfsHandle.h71 struct pollfd mPollFds[2]; variable