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

/frameworks/native/opengl/libs/EGL/
H A Degl_tls.cpp73 egl_tls_t* tls = getTLS(); local
74 if (tls->error != error) {
84 tls->error = error;
89 egl_tls_t* tls = getTLS(); local
90 if (tls->logCallWithNoContext == true) {
91 tls->logCallWithNoContext = false;
98 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local
99 if (tls == 0) {
100 tls = new egl_tls_t;
101 pthread_setspecific(sKey, tls);
108 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local
126 egl_tls_t* tls = (egl_tls_t*)pthread_getspecific(sKey); local
144 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.cpp84 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(gThreadTLSKey); local
85 return tls->mContext;
89 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(gThreadTLSKey); local
90 return tls->mScript;
229 ALOGE("Failed to init thread tls key.");
923 ScriptTLSStruct * tls = (ScriptTLSStruct *)pthread_getspecific(gThreadTLSKey); local
924 rsAssert(tls);
925 RsdCpuScriptImpl *old = tls->mImpl;
926 tls->mImpl = sc;
927 tls
[all...]

Completed in 128 milliseconds