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()
1764 sdl->requests = emalloc(sizeof(HashTable)); in get_sdl_from_cache()
1765 zend_hash_init(sdl->requests, i, NULL, NULL, 0); in get_sdl_from_cache()
1770 sdl_deserialize_key(sdl->requests, functions[function_num-1], &in); in get_sdl_from_cache()
2356 if (sdl->requests) { in add_sdl_to_cache()
2357 i = zend_hash_num_elements(sdl->requests); in add_sdl_to_cache()
2366 zend_hash_internal_pointer_reset(sdl->requests); in add_sdl_to_cache()
2367 while (zend_hash_get_current_data(sdl->requests, (void**)&tmp) == SUCCESS) { in add_sdl_to_cache()
2371 sdl_serialize_key(sdl->requests, out); in add_sdl_to_cache()
2372 zend_hash_move_forward(sdl->requests); in add_sdl_to_cache()
3118 if (sdl->requests) { in make_persistent_sdl()
3122 psdl->requests = malloc(sizeof(HashTable)); in make_persistent_sdl()
3123 zend_hash_init(psdl->requests, zend_hash_num_elements(sdl->requests), NULL, NULL, 1); in make_persistent_sdl()
3125 zend_hash_internal_pointer_reset(sdl->requests); in make_persistent_sdl()
3126 while (zend_hash_get_current_data(sdl->requests, (void **)&tmp) == SUCCESS) { in make_persistent_sdl()
3131 …if (zend_hash_get_current_key_ex(sdl->requests, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_ST… in make_persistent_sdl()
3132 zend_hash_add(psdl->requests, key, key_len, (void*)&preq, sizeof(sdlFunctionPtr), NULL); in make_persistent_sdl()
3134 zend_hash_move_forward(sdl->requests); in make_persistent_sdl()
3182 if (tmp->requests) { in delete_psdl()
3183 zend_hash_destroy(tmp->requests); in delete_psdl()
3184 free(tmp->requests); in delete_psdl()
3453 if (tmp->requests) { in delete_sdl_impl()
3454 zend_hash_destroy(tmp->requests); in delete_sdl_impl()
3455 efree(tmp->requests); in delete_sdl_impl()