Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Drun_loop.cpp15 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()
H A Drun_loop_impl.hpp30 std::unordered_map<int, WatchPair> readPoll; member in mbgl::util::RunLoop::Impl