Lines Matching refs:requests
1135 if (ctx.sdl->requests == NULL) { in load_wsdl()
1136 ctx.sdl->requests = emalloc(sizeof(HashTable)); in load_wsdl()
1137 zend_hash_init(ctx.sdl->requests, 0, NULL, NULL, 0); in load_wsdl()
1141 zend_hash_str_add_ptr(ctx.sdl->requests, php_strtolower(tmp, len), len, function); in load_wsdl()
1761 sdl->requests = emalloc(sizeof(HashTable)); in get_sdl_from_cache()
1762 zend_hash_init(sdl->requests, i, NULL, NULL, 0); in get_sdl_from_cache()
1767 sdl_deserialize_key(sdl->requests, functions[function_num-1], &in); in get_sdl_from_cache()
2350 if (sdl->requests) { in add_sdl_to_cache()
2351 i = zend_hash_num_elements(sdl->requests); in add_sdl_to_cache()
2361 ZEND_HASH_FOREACH_STR_KEY_PTR(sdl->requests, key, tmp) { in add_sdl_to_cache()
3078 if (sdl->requests) { in make_persistent_sdl()
3083 psdl->requests = malloc(sizeof(HashTable)); in make_persistent_sdl()
3084 zend_hash_init(psdl->requests, zend_hash_num_elements(sdl->requests), NULL, NULL, 1); in make_persistent_sdl()
3086 ZEND_HASH_FOREACH_STR_KEY_VAL(sdl->requests, key, zv) { in make_persistent_sdl()
3094 zend_hash_str_add_ptr(psdl->requests, ZSTR_VAL(key), ZSTR_LEN(key), preq); in make_persistent_sdl()
3142 if (tmp->requests) { in delete_psdl_int()
3143 zend_hash_destroy(tmp->requests); in delete_psdl_int()
3144 free(tmp->requests); in delete_psdl_int()
3408 if (tmp->requests) { in delete_sdl_impl()
3409 zend_hash_destroy(tmp->requests); in delete_sdl_impl()
3410 efree(tmp->requests); in delete_sdl_impl()