Searched refs:readPoll (Results 1 – 2 of 2) sorted by relevance
15 readPoll[fd].second(fd, Event::Read); in onReadEvent()98 impl->readPoll[fd] = WatchPair(std::move(notifier), std::move(cb)); in addWatch()116 auto readPollIter = impl->readPoll.find(fd); in removeWatch()117 if (readPollIter != impl->readPoll.end()) { in removeWatch()118 impl->readPoll.erase(readPollIter); in removeWatch()
30 std::unordered_map<int, WatchPair> readPoll; member in mbgl::util::RunLoop::Impl