Home
last modified time | relevance | path

Searched refs:pthread_getspecific (Results 1 – 25 of 90) sorted by relevance

1234

/third_party/boost/libs/log/src/
Dthread_specific.cpp121 return pthread_getspecific(*static_cast< pthread_key_type* >(stg));
171 return pthread_getspecific((pthread_key_type)(intptr_type)stg);
214 return pthread_getspecific(key);
250 return pthread_getspecific(static_cast< pthread_key_type >(stg));
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_setspecific/
D1-2.c50 rc2 = pthread_getspecific(key); in a_thread_func()
85 rc1 = pthread_getspecific(key); in main()
Dcoverage.txt1 This document defines the coverage for the pthread_getspecific function:
/third_party/musl/libc-test/src/functionalext/supplement/thread/
Dpthread_setspecific.c28 int32_t *keyRet = (int32_t *)pthread_getspecific(g_key); in threadfuncA()
40 int32_t *keyRet = (int32_t *)pthread_getspecific(g_key); in threadfuncB()
Dpthread_key_create.c30 int32_t *keyRet = (int32_t *)pthread_getspecific(g_key); in threadfuncA()
40 int32_t *keyRet = (int32_t *)pthread_getspecific(g_key); in threadfuncB()
Dpthread_getspecific.c28 int32_t *keyRet = (int32_t *)pthread_getspecific(g_key); in threadfuncA()
/third_party/boost/libs/thread/src/pthread/
Donce.cpp55 void* data = pthread_getspecific(epoch_tss_key); in ~delete_epoch_tss_key_on_dlclose_t()
69 void* data=pthread_getspecific(epoch_tss_key); in get_once_per_thread_epoch()
/third_party/musl/libc-test/src/functional/
Dpthread_tsd.c42 TESTC(pthread_getspecific(k1) == bar, "tsd corrupted"); in main()
43 TESTC(pthread_getspecific(k2) == bar+1, "tsd corrupted"); in main()
/third_party/libxml2/os400/dlfcn/
Ddlfcn.c114 p = pthread_getspecific(dlkey); in dlterm()
183 p = pthread_getspecific(dlkey); in dlthreadinit()
210 p = pthread_getspecific(dlkey); in dllock()
238 p = pthread_getspecific(dlkey); in dlunlock()
266 else if (!(p = (dlts_t *) pthread_getspecific(dlkey))) in dlerror()
285 else if (!(p = (dlts_t *) pthread_getspecific(dlkey))) in dlseterror_from_errno()
314 else if (!(q = (dlts_t *) pthread_getspecific(dlkey))) in dlseterror_from_exception()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/IntelJITEvents/
Djitprofiling.c169 (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in iJIT_NotifyEvent()
207 (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in iJIT_NotifyEvent()
428 (pThreadStack)pthread_getspecific(threadLocalStorageHandle); in FinalizeThread()
/third_party/mesa3d/docs/
Ddispatch.rst81 ``GET_DISPATCH`` involves a call to ``pthread_getspecific`` or a similar
99 ``pthread_getspecific`` hurt performance, but they are completely
117 but it avoids the expensive ``pthread_getspecific`` call in the common
125 ? _glapi_Dispatch : pthread_getspecific(&_glapi_Dispatch_key)
133 area, the expensive call to ``pthread_getspecific`` and the test of
181 #. Using ``_glapi_Dispatch`` and ``pthread_getspecific`` in
217 a call to ``pthread_getspecific``. Since x86-64 passes parameters in
219 to ``pthread_getspecific`` to save and restore the GL function's
/third_party/musl/src/thread/
Dpthread_getspecific.c10 weak_alias(__pthread_getspecific, pthread_getspecific);
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_key_create/
D2-1.c37 rc = pthread_getspecific(key); in main()
D1-1.c54 rc = pthread_getspecific(keys[i]); in main()
/third_party/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_getspecific/
Dcoverage.txt1 This document defines the coverage for the pthread_getspecific function:
D3-1.c36 rc = pthread_getspecific(key); in main()
D1-1.c51 rc = pthread_getspecific(keys[i]); in main()
/third_party/pulseaudio/src/pulsecore/
Dthread-posix.c245 return pthread_getspecific(t->key); in pa_tls_get()
251 r = pthread_getspecific(t->key); in pa_tls_set()
/third_party/flutter/skia/src/ports/
DSkTLS_pthread.cpp20 return pthread_getspecific(gSkTLSKey); in PlatformGetSpecific()
/third_party/flutter/engine/flutter/fml/
Dthread_local.cc23 return pthread_getspecific(key_); in get()
/third_party/boost/libs/asio/include/boost/asio/detail/
Dposix_tss_ptr.hpp54 return static_cast<T*>(::pthread_getspecific(tss_key_)); in operator T*()
/third_party/boost/boost/asio/detail/
Dposix_tss_ptr.hpp54 return static_cast<T*>(::pthread_getspecific(tss_key_)); in operator T*()
/third_party/flutter/glfw/src/
Dposix_tls.c66 return pthread_getspecific(_glfw.posix_tls.context); in _glfwPlatformGetCurrentContext()
/third_party/grpc/src/core/lib/gpr/
Dtls_pthread.h47 #define gpr_tls_get(tls) ((intptr_t)pthread_getspecific((tls)->key))
/third_party/flutter/skia/third_party/externals/sdl/src/thread/pthread/
DSDL_systls.c54 return (SDL_TLSData *)pthread_getspecific(thread_local_storage); in SDL_SYS_GetTLSData()

1234