Lines Matching refs:pointers
89 void **pointers = (void **)TlsGetValue(g_thread_local_key); in thread_local_destructor() local
90 if (pointers == NULL) { in thread_local_destructor()
102 destructors[i](pointers[i]); in thread_local_destructor()
106 free(pointers); in thread_local_destructor()
201 void **pointers = get_thread_locals(); in CRYPTO_get_thread_local() local
202 if (pointers == NULL) { in CRYPTO_get_thread_local()
205 return pointers[index]; in CRYPTO_get_thread_local()
216 void **pointers = get_thread_locals(); in CRYPTO_set_thread_local() local
217 if (pointers == NULL) { in CRYPTO_set_thread_local()
218 pointers = reinterpret_cast<void **>( in CRYPTO_set_thread_local()
220 if (pointers == NULL) { in CRYPTO_set_thread_local()
224 OPENSSL_memset(pointers, 0, sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS); in CRYPTO_set_thread_local()
225 if (TlsSetValue(g_thread_local_key, pointers) == 0) { in CRYPTO_set_thread_local()
226 free(pointers); in CRYPTO_set_thread_local()
236 pointers[index] = value; in CRYPTO_set_thread_local()