Home
last modified time | relevance | path

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

/system/core/adb/
Dfdevent.cpp245 static std::string dump_pollfds(const std::vector<adb_pollfd>& pollfds) { in dump_pollfds() argument
247 for (const auto& pollfd : pollfds) { in dump_pollfds()
287 std::vector<adb_pollfd> pollfds; in fdevent_process() local
289 pollfds.push_back(pair.second.pollfd); in fdevent_process()
291 CHECK_GT(pollfds.size(), 0u); in fdevent_process()
292 D("poll(), pollfds = %s", dump_pollfds(pollfds).c_str()); in fdevent_process()
302 int ret = adb_poll(&pollfds[0], pollfds.size(), timeout_ms); in fdevent_process()
310 for (const auto& pollfd : pollfds) { in fdevent_process()