Lines Matching refs:groups

1628 		sdl->groups = emalloc(sizeof(HashTable));  in get_sdl_from_cache()
1629 zend_hash_init(sdl->groups, num_groups, NULL, delete_type, 0); in get_sdl_from_cache()
1631 sdl_deserialize_key(sdl->groups, types[i], &in); in get_sdl_from_cache()
2145 if (sdl->groups) { in add_sdl_to_cache()
2146 i = zend_hash_num_elements(sdl->groups); in add_sdl_to_cache()
2154 zend_hash_internal_pointer_reset(sdl->groups); in add_sdl_to_cache()
2155 while (zend_hash_get_current_data(sdl->groups, (void**)&tmp) == SUCCESS) { in add_sdl_to_cache()
2158 zend_hash_move_forward(sdl->groups); in add_sdl_to_cache()
2219 if (sdl->groups) { in add_sdl_to_cache()
2221 zend_hash_internal_pointer_reset(sdl->groups); in add_sdl_to_cache()
2222 while (zend_hash_get_current_data(sdl->groups, (void**)&tmp) == SUCCESS) { in add_sdl_to_cache()
2223 sdl_serialize_key(sdl->groups, out); in add_sdl_to_cache()
2225 zend_hash_move_forward(sdl->groups); in add_sdl_to_cache()
2972 if (sdl->groups) { in make_persistent_sdl()
2976 psdl->groups = malloc(sizeof(HashTable)); in make_persistent_sdl()
2977 …zend_hash_init(psdl->groups, zend_hash_num_elements(sdl->groups), NULL, delete_type_persistent, 1); in make_persistent_sdl()
2979 zend_hash_internal_pointer_reset(sdl->groups); in make_persistent_sdl()
2980 while (zend_hash_get_current_data(sdl->groups, (void **)&tmp) == SUCCESS) { in make_persistent_sdl()
2982 …if (zend_hash_get_current_key_ex(sdl->groups, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRI… in make_persistent_sdl()
2983 zend_hash_add(psdl->groups, key, key_len, (void*)&ptype, sizeof(sdlTypePtr), NULL); in make_persistent_sdl()
2985 zend_hash_next_index_insert(psdl->groups, (void*)&ptype, sizeof(sdlTypePtr), NULL); in make_persistent_sdl()
2988 zend_hash_move_forward(sdl->groups); in make_persistent_sdl()
3173 if (tmp->groups) { in delete_psdl()
3174 zend_hash_destroy(tmp->groups); in delete_psdl()
3175 free(tmp->groups); in delete_psdl()
3444 if (tmp->groups) { in delete_sdl_impl()
3445 zend_hash_destroy(tmp->groups); in delete_sdl_impl()
3446 efree(tmp->groups); in delete_sdl_impl()