Lines Matching refs:pointers
101 void **pointers = arg;
104 destructors[i](pointers[i]);
108 OPENSSL_free(pointers);
126 void **pointers = pthread_getspecific(g_thread_local_key);
127 if (pointers == NULL) {
130 return pointers[index];
141 void **pointers = pthread_getspecific(g_thread_local_key);
142 if (pointers == NULL) {
143 pointers = OPENSSL_malloc(sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS);
144 if (pointers == NULL) {
148 memset(pointers, 0, sizeof(void *) * NUM_OPENSSL_THREAD_LOCALS);
149 if (pthread_setspecific(g_thread_local_key, pointers) != 0) {
150 OPENSSL_free(pointers);
163 pointers[index] = value;