Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/qt/src/
H A Dthread_local.cpp15 class ThreadLocal<T>::Impl {
21 ThreadLocal<T>::ThreadLocal() : impl(std::make_unique<Impl>()) { in ThreadLocal() function in mbgl::util::ThreadLocal
26 ThreadLocal<T>::~ThreadLocal() { in ~ThreadLocal()
35 T* ThreadLocal<T>::get() { in get()
40 void ThreadLocal<T>::set(T* ptr) { in set()
44 template class ThreadLocal<Scheduler>; variable
45 template class ThreadLocal<BackendScope>; variable
46 template class ThreadLocal<int>; // For unit tests variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/platform/default/
H A Dthread_local.cpp16 class ThreadLocal<T>::Impl {
22 ThreadLocal<T>::ThreadLocal() : impl(std::make_unique<Impl>()) { in ThreadLocal() function in mbgl::util::ThreadLocal
31 ThreadLocal<T>::~ThreadLocal() { in ~ThreadLocal()
45 T* ThreadLocal<T>::get() { in get()
55 void ThreadLocal<T>::set(T* ptr) { in set()
61 template class ThreadLocal<BackendScope>; variable
62 template class ThreadLocal<Scheduler>; variable
63 template class ThreadLocal<int>; // For unit tests variable
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Dthread_local.hpp11 class ThreadLocal : public noncopyable { class
13 ThreadLocal(T* val) { in ThreadLocal() function in mbgl::util::ThreadLocal
14 ThreadLocal(); in ThreadLocal()
18 ThreadLocal();
19 ~ThreadLocal();
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Dbackend_scope.cpp9 mbgl::util::ThreadLocal<mbgl::BackendScope>& currentScope() { in currentScope()
10 static mbgl::util::ThreadLocal<mbgl::BackendScope> backendScope; in currentScope()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/actor/
H A Dscheduler.cpp7 static util::ThreadLocal<Scheduler> scheduler; in current()