Home | History | Annotate | Download | only in IntelJITEvents

Lines Matching refs:threadLocalStorageHandle

87 static DWORD threadLocalStorageHandle = 0;
89 static pthread_key_t threadLocalStorageHandle = (pthread_key_t)0;
167 (pThreadStack)TlsGetValue (threadLocalStorageHandle);
170 (pThreadStack)pthread_getspecific(threadLocalStorageHandle);
184 TlsSetValue(threadLocalStorageHandle,(void*)threadStack);
186 pthread_setspecific(threadLocalStorageHandle,(void*)threadStack);
205 (pThreadStack)TlsGetValue (threadLocalStorageHandle);
208 (pThreadStack)pthread_getspecific(threadLocalStorageHandle);
405 if (!threadLocalStorageHandle)
407 threadLocalStorageHandle = TlsAlloc();
409 pthread_key_create(&threadLocalStorageHandle, NULL);
422 if (threadLocalStorageHandle)
426 (pThreadStack)TlsGetValue (threadLocalStorageHandle);
429 (pThreadStack)pthread_getspecific(threadLocalStorageHandle);
436 TlsSetValue (threadLocalStorageHandle, threadStack);
438 pthread_setspecific(threadLocalStorageHandle, threadStack);
460 if (threadLocalStorageHandle)
462 TlsFree (threadLocalStorageHandle);
464 pthread_key_delete(threadLocalStorageHandle);