responseParameters  267 ext/soap/php_packet_soap.c 			if (fn->responseParameters) {
responseParameters  268 ext/soap/php_packet_soap.c 			  res_count = zend_hash_num_elements(fn->responseParameters);
responseParameters  269 ext/soap/php_packet_soap.c 				zend_hash_internal_pointer_reset(fn->responseParameters);
responseParameters  270 ext/soap/php_packet_soap.c 				while (zend_hash_get_current_data(fn->responseParameters, (void **)&h_param) == SUCCESS) {
responseParameters  337 ext/soap/php_packet_soap.c 					zend_hash_move_forward(fn->responseParameters);
responseParameters 1020 ext/soap/php_sdl.c 						function->responseParameters = wsdl_message(&ctx, message->children->content);
responseParameters 1041 ext/soap/php_sdl.c 								wsdl_soap_binding_body(&ctx, output, wsdl_soap_namespace, &soapFunctionBinding->output, function->responseParameters);
responseParameters 1726 ext/soap/php_sdl.c 			func->responseParameters = sdl_deserialize_parameters(encoders, types, &in);
responseParameters 2323 ext/soap/php_sdl.c 			sdl_serialize_parameters((*tmp)->responseParameters, &tmp_encoders, &tmp_types, out);
responseParameters 2941 ext/soap/php_sdl.c 		if (pfunc->responseParameters) {
responseParameters 2942 ext/soap/php_sdl.c 			pfunc->responseParameters = make_persistent_sdl_parameters(pfunc->responseParameters, ptr_map);
responseParameters 3550 ext/soap/php_sdl.c 	if (function->responseParameters) {
responseParameters 3551 ext/soap/php_sdl.c 		zend_hash_destroy(function->responseParameters);
responseParameters 3552 ext/soap/php_sdl.c 		efree(function->responseParameters);
responseParameters 3589 ext/soap/php_sdl.c 	if (function->responseParameters) {
responseParameters 3590 ext/soap/php_sdl.c 		zend_hash_destroy(function->responseParameters);
responseParameters 3591 ext/soap/php_sdl.c 		free(function->responseParameters);
responseParameters  233 ext/soap/php_sdl.h 	HashTable          *responseParameters; /* array of sdlParamPtr (this should only be one) */
responseParameters 2714 ext/soap/soap.c 				    fn->responseParameters == NULL &&
responseParameters 3772 ext/soap/soap.c 			} else if (function->responseParameters) {
responseParameters 3786 ext/soap/soap.c 		if (function->responseParameters) {
responseParameters 3787 ext/soap/soap.c 			param_count = zend_hash_num_elements(function->responseParameters);
responseParameters 4499 ext/soap/soap.c 		ht = function->responseParameters;
responseParameters 4610 ext/soap/soap.c 	if (function->responseParameters &&
responseParameters 4611 ext/soap/soap.c 	    zend_hash_num_elements(function->responseParameters) > 0) {
responseParameters 4612 ext/soap/soap.c 		if (zend_hash_num_elements(function->responseParameters) == 1) {
responseParameters 4613 ext/soap/soap.c 			zend_hash_internal_pointer_reset(function->responseParameters);
responseParameters 4614 ext/soap/soap.c 			zend_hash_get_current_data(function->responseParameters, (void**)&param);
responseParameters 4624 ext/soap/soap.c 			zend_hash_internal_pointer_reset_ex(function->responseParameters, &pos);
responseParameters 4625 ext/soap/soap.c 			while (zend_hash_get_current_data_ex(function->responseParameters, (void **)&param, &pos) != FAILURE) {
responseParameters 4636 ext/soap/soap.c 				zend_hash_move_forward_ex(function->responseParameters, &pos);