Lines Matching refs:requests

1142 							if (ctx.sdl->requests == NULL) {  in load_wsdl()
1143 ctx.sdl->requests = emalloc(sizeof(HashTable)); in load_wsdl()
1144 zend_hash_init(ctx.sdl->requests, 0, NULL, NULL, 0); in load_wsdl()
1148 …zend_hash_add(ctx.sdl->requests, php_strtolower(tmp, len), len+1, &function, sizeof(sdlFunctionPtr… in load_wsdl()
1766 sdl->requests = emalloc(sizeof(HashTable)); in get_sdl_from_cache()
1767 zend_hash_init(sdl->requests, i, NULL, NULL, 0); in get_sdl_from_cache()
1772 sdl_deserialize_key(sdl->requests, functions[function_num-1], &in); in get_sdl_from_cache()
2358 if (sdl->requests) { in add_sdl_to_cache()
2359 i = zend_hash_num_elements(sdl->requests); in add_sdl_to_cache()
2368 zend_hash_internal_pointer_reset(sdl->requests); in add_sdl_to_cache()
2369 while (zend_hash_get_current_data(sdl->requests, (void**)&tmp) == SUCCESS) { in add_sdl_to_cache()
2373 sdl_serialize_key(sdl->requests, out); in add_sdl_to_cache()
2374 zend_hash_move_forward(sdl->requests); in add_sdl_to_cache()
3120 if (sdl->requests) { in make_persistent_sdl()
3124 psdl->requests = malloc(sizeof(HashTable)); in make_persistent_sdl()
3125 zend_hash_init(psdl->requests, zend_hash_num_elements(sdl->requests), NULL, NULL, 1); in make_persistent_sdl()
3127 zend_hash_internal_pointer_reset(sdl->requests); in make_persistent_sdl()
3128 while (zend_hash_get_current_data(sdl->requests, (void **)&tmp) == SUCCESS) { in make_persistent_sdl()
3133 …if (zend_hash_get_current_key_ex(sdl->requests, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_ST… in make_persistent_sdl()
3134 zend_hash_add(psdl->requests, key, key_len, (void*)&preq, sizeof(sdlFunctionPtr), NULL); in make_persistent_sdl()
3136 zend_hash_move_forward(sdl->requests); in make_persistent_sdl()
3184 if (tmp->requests) { in delete_psdl()
3185 zend_hash_destroy(tmp->requests); in delete_psdl()
3186 free(tmp->requests); in delete_psdl()
3455 if (tmp->requests) { in delete_sdl_impl()
3456 zend_hash_destroy(tmp->requests); in delete_sdl_impl()
3457 efree(tmp->requests); in delete_sdl_impl()