Home
last modified time | relevance | path

Searched refs:writePoll (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.cpp19 writePoll[fd].second(fd, Event::Write); in onWriteEvent()
104 impl->writePoll[fd] = WatchPair(std::move(notifier), std::move(cb)); in addWatch()
111 auto writePollIter = impl->writePoll.find(fd); in removeWatch()
112 if (writePollIter != impl->writePoll.end()) { in removeWatch()
113 impl->writePoll.erase(writePollIter); in removeWatch()
H A Drun_loop_impl.hpp31 std::unordered_map<int, WatchPair> writePoll; member in mbgl::util::RunLoop::Impl