Home
last modified time | relevance | path

Searched refs:currentThread (Results 1 – 21 of 21) sorted by relevance

/third_party/skia/third_party/externals/angle2/src/libGLESv2/
Dglobal_state.h138 egl::Thread *currentThread = egl::GetCurrentThreadTLS(); in GetGlobalContext() local
140 egl::Thread *currentThread = egl::gCurrentThread; in GetGlobalContext() local
142 ASSERT(currentThread); in GetGlobalContext()
143 return currentThread->getContext(); in GetGlobalContext()
Dglobal_state.cpp165 Thread *currentThread = GetCurrentThreadTLS(); in SetContextCurrent() local
167 Thread *currentThread = gCurrentThread; in SetContextCurrent()
169 ASSERT(currentThread); in SetContextCurrent()
170 currentThread->setCurrent(context); in SetContextCurrent()
/third_party/protobuf/java/core/src/test/java/com/google/protobuf/
DExtensionRegistryFactoryTest.java227 ClassLoader storedClassLoader = Thread.currentThread().getContextClassLoader(); in runTest()
228 Thread.currentThread().setContextClassLoader(LITE_CLASS_LOADER); in runTest()
232 Thread.currentThread().setContextClassLoader(storedClassLoader); in runTest()
237 Thread.currentThread().setContextClassLoader(storedClassLoader); in runTest()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
DClassLoaderUtil.java91 ClassLoader cl = Thread.currentThread().getContextClassLoader(); in getClassLoader()
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/impl/
DClassLoaderUtil.java93 ClassLoader cl = Thread.currentThread().getContextClassLoader(); in getClassLoader()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/Debug/
DContext.hpp66 std::shared_ptr<Thread> currentThread();
DContext.cpp296 std::shared_ptr<Thread> Context::Lock::currentThread() in currentThread() function in vk::dbg::Context::Lock
/third_party/cef/tests/shared/browser/
Dmain_message_loop_external_pump_mac.mm87 : owner_thread_([NSThread currentThread]), timer_(nil) {
/third_party/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/format/
DGlobalizationPreferencesTest.java418 rb = gp.getResourceBundle(baseName, Thread.currentThread().getContextClassLoader()); in TestResourceBundle()
438 rb = gp.getResourceBundle(baseName, Thread.currentThread().getContextClassLoader()); in TestResourceBundle()
450 … rb = gp.getResourceBundle("foo.bar.XXX", Thread.currentThread().getContextClassLoader()); in TestResourceBundle()
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/
DGlobalizationPreferencesTest.java421 rb = gp.getResourceBundle(baseName, Thread.currentThread().getContextClassLoader()); in TestResourceBundle()
441 rb = gp.getResourceBundle(baseName, Thread.currentThread().getContextClassLoader()); in TestResourceBundle()
453 … rb = gp.getResourceBundle("foo.bar.XXX", Thread.currentThread().getContextClassLoader()); in TestResourceBundle()
/third_party/flutter/engine/flutter/shell/platform/android/io/flutter/embedding/engine/
DFlutterJNI.java807 + Thread.currentThread().getName() in ensureRunningOnMainThread()
/third_party/gstreamer/gstplugins_good/ext/qt/
Dqtglrenderer.cc351 m_sharedRenderData->m_renderThread = QThread::currentThread(); in init()
/third_party/python/Lib/
Dthreading.py1435 def currentThread(): function
/third_party/python/Doc/library/
Ddifflib.rst597 ... "private Thread currentThread;",
598 ... "private volatile Thread currentThread;")
Dthreading.rst55 The function ``currentThread`` is a deprecated alias for this function.
/third_party/python/Lib/test/
Dtest_threading.py492 threading.currentThread()
/third_party/skia/third_party/externals/swiftshader/src/Vulkan/
DVkCommandBuffer.cpp1738 debuggerThread = debuggerContext->lock().currentThread(); in submit()
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst1026 - ``currentThread`` => :func:`threading.current_thread`
/third_party/python/Doc/howto/
Dlogging-cookbook.rst2852 return QtCore.QThread.currentThread().objectName()
2882 while not QtCore.QThread.currentThread().isInterruptionRequested():
2995 QtCore.QThread.currentThread().setObjectName('MainThread')
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
DSpirvShaderDebugger.cpp2165 thread = state->debugger->ctx->lock().currentThread(); in Data()
/third_party/python/Doc/whatsnew/
D3.10.rst1719 * ``threading.currentThread`` => :func:`threading.current_thread`