Searched defs:tls (Results 1 - 4 of 4) sorted by relevance

/frameworks/native/opengl/libs/EGL/
H A Degl_tls.cpp68 egl_tls_t* tls = getTLS(); local
69 if (tls->error != error) {
79 tls->error = error;
84 egl_tls_t* tls = getTLS(); local
85 if (tls->logCallWithNoContext) {
86 tls->logCallWithNoContext = false;
94 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local
95 if (tls == 0) {
96 tls = new egl_tls_t;
97 pthread_setspecific(sKey, tls);
104 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local
122 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local
140 egl_tls_t* tls = (egl_tls_t *)pthread_getspecific(sKey); local
[all...]
/frameworks/native/libs/binder/
H A DBufferedTextOutput.cpp92 static thread_store_t tls; member in namespace:android
96 ThreadState* ts = (ThreadState*) thread_store_get( &tls );
99 thread_store_set( &tls, ts, threadDestructor );
/frameworks/compile/mclinker/lib/Target/ARM/
H A DARMRelocator.cpp1362 ARMRelocator::Result tls(Relocation& pReloc, ARMRelocator& pParent) { function in namespace:mcld
/frameworks/rs/cpu_ref/
H A DrsCpuCore.cpp72 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(gThreadTLSKey); local
73 return tls->mContext;
77 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(gThreadTLSKey); local
78 return tls->mScript;
217 ALOGE("Failed to init thread tls key.");
921 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(gThreadTLSKey); local
922 rsAssert(tls);
923 RsdCpuScriptImpl *old = tls->mImpl;
924 tls->mImpl = sc;
925 tls
[all...]

Completed in 151 milliseconds