Lines Matching refs:thread_resources_ptr
371 static void allocate_new_resource(tsrm_tls_entry **thread_resources_ptr, THREAD_T thread_id) in allocate_new_resource() argument
376 …(*thread_resources_ptr) = (tsrm_tls_entry *) malloc(TSRM_ALIGNED_SIZE(sizeof(tsrm_tls_entry)) + ts… in allocate_new_resource()
377 (*thread_resources_ptr)->storage = NULL; in allocate_new_resource()
379 (*thread_resources_ptr)->storage = (void **) malloc(sizeof(void *)*id_count); in allocate_new_resource()
381 (*thread_resources_ptr)->count = id_count; in allocate_new_resource()
382 (*thread_resources_ptr)->thread_id = thread_id; in allocate_new_resource()
383 (*thread_resources_ptr)->next = NULL; in allocate_new_resource()
386 tsrm_tls_set(*thread_resources_ptr); in allocate_new_resource()
387 TSRMLS_CACHE = *thread_resources_ptr; in allocate_new_resource()
394 (*thread_resources_ptr)->storage[i] = NULL; in allocate_new_resource()
397 …(*thread_resources_ptr)->storage[i] = (void *) (((char*)(*thread_resources_ptr)) + resource_types_… in allocate_new_resource()
399 (*thread_resources_ptr)->storage[i] = (void *) malloc(resource_types_table[i].size); in allocate_new_resource()
402 resource_types_table[i].ctor((*thread_resources_ptr)->storage[i]); in allocate_new_resource()