Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Drun_loop.cpp25 RunLoop::Event watchEvent = RunLoop::Event::None; in onEvent()
28 watchEvent = RunLoop::Event::Read; in onEvent()
31 watchEvent = RunLoop::Event::Write; in onEvent()
34 watchEvent = RunLoop::Event::ReadWrite; in onEvent()
49 std::function<void(int, RunLoop::Event)> eventCallback;
53 RunLoop* RunLoop::Get() { in Get()
54 assert(static_cast<RunLoop*>(Scheduler::GetCurrent())); in Get()
55 return static_cast<RunLoop*>(Scheduler::GetCurrent()); in Get()
58 class RunLoop::Impl {
73 RunLoop::Type type;
[all …]
H A Dhttp_file_source.cpp124 void perform(curl_socket_t s, util::RunLoop::Event event);
236 void HTTPFileSource::Impl::perform(curl_socket_t s, util::RunLoop::Event events) { in perform()
239 if (events == util::RunLoop::Event::Read) { in perform()
242 if (events == util::RunLoop::Event::Write) { in perform()
260 util::RunLoop::Get()->addWatch(s, util::RunLoop::Event::Read, in handleSocket()
266 util::RunLoop::Get()->addWatch(s, util::RunLoop::Event::Write, in handleSocket()
271 util::RunLoop::Get()->removeWatch(s); in handleSocket()
H A Dasync_task.cpp19 auto* loop = reinterpret_cast<uv_loop_t*>(RunLoop::getLoopHandle()); in Impl()
H A Dtimer.cpp13 auto* loop = reinterpret_cast<uv_loop_t*>(RunLoop::getLoopHandle()); in Impl()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Drun_loop.cpp14 void RunLoop::Impl::onReadEvent(int fd) { in onReadEvent()
18 void RunLoop::Impl::onWriteEvent(int fd) { in onWriteEvent()
22 RunLoop* RunLoop::Get() { in Get()
23 assert(static_cast<RunLoop*>(Scheduler::GetCurrent())); in Get()
24 return static_cast<RunLoop*>(Scheduler::GetCurrent()); in Get()
27 RunLoop::RunLoop(Type type) : impl(std::make_unique<Impl>()) { in RunLoop() function in mbgl::util::RunLoop
40 impl->async = std::make_unique<AsyncTask>(std::bind(&RunLoop::process, this)); in RunLoop()
43 RunLoop::~RunLoop() { in ~RunLoop()
49 LOOP_HANDLE RunLoop::getLoopHandle() { in getLoopHandle()
55 void RunLoop::wake() { in wake()
[all …]
H A Drun_loop_impl.hpp16 using WatchCallback = std::function<void(int, RunLoop::Event)>;
19 class RunLoop::Impl : public QObject {
25 RunLoop::Type type;
H A Dasync_task_impl.hpp13 class RunLoop;
30 RunLoop* runLoop;
H A Dasync_task.cpp12 : runLoop(RunLoop::Get()), in Impl()
24 assert(runLoop == RunLoop::Get()); in runTask()
H A Dqmapboxgl_renderer_observer.hpp15 QMapboxGLRendererObserver(mbgl::util::RunLoop& mapRunLoop, mbgl::RendererObserver& delegate_) in QMapboxGLRendererObserver()
H A Dqmapboxgl.cpp93 QThreadStorage<std::shared_ptr<mbgl::util::RunLoop>> loop;
587 loop.setLocalData(std::make_shared<mbgl::util::RunLoop>()); in QMapboxGL()
1847 *mbgl::util::RunLoop::Get(), observer); in setObserver()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/util/
H A Dthread.hpp59 util::RunLoop loop_(util::RunLoop::Type::New); in Thread()
118 loop->invoke(RunLoop::Priority::High, [this] { in pause()
151 util::RunLoop* loop = nullptr;
H A Drun_loop.hpp21 class RunLoop : public Scheduler, class
41 RunLoop(Type type = Type::Default);
42 ~RunLoop() override;
44 static RunLoop* Get();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/gl/
H A Dheadless_frontend.cpp82 util::RunLoop::Get()->runOnce(); in render()
/OK3568_Linux_fs/yocto/poky/meta/recipes-sato/webkit/webkitgtk/
H A D0001-Fix-build-without-opengl-or-es.patch110 #include <wtf/RunLoop.h>
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/mbgl/storage/
H A Doffline_download.cpp304 *workRequestsIt = util::RunLoop::Get()->invokeCancellable([=]() { in ensureResource()