responseParameters  269 ext/soap/php_packet_soap.c 			if (fn->responseParameters) {
responseParameters  270 ext/soap/php_packet_soap.c 				res_count = zend_hash_num_elements(fn->responseParameters);
responseParameters  271 ext/soap/php_packet_soap.c 				ZEND_HASH_FOREACH_PTR(fn->responseParameters, param) {
responseParameters 1012 ext/soap/php_sdl.c 						function->responseParameters = wsdl_message(&ctx, message->children->content);
responseParameters 1033 ext/soap/php_sdl.c 								wsdl_soap_binding_body(&ctx, output, wsdl_soap_namespace, &soapFunctionBinding->output, function->responseParameters);
responseParameters 1718 ext/soap/php_sdl.c 			func->responseParameters = sdl_deserialize_parameters(encoders, types, &in);
responseParameters 2315 ext/soap/php_sdl.c 			sdl_serialize_parameters(tmp->responseParameters, &tmp_encoders, &tmp_types, out);
responseParameters 2910 ext/soap/php_sdl.c 		if (pfunc->responseParameters) {
responseParameters 2911 ext/soap/php_sdl.c 			pfunc->responseParameters = make_persistent_sdl_parameters(pfunc->responseParameters, ptr_map);
responseParameters 3501 ext/soap/php_sdl.c 	if (function->responseParameters) {
responseParameters 3502 ext/soap/php_sdl.c 		zend_hash_destroy(function->responseParameters);
responseParameters 3503 ext/soap/php_sdl.c 		efree(function->responseParameters);
responseParameters 3540 ext/soap/php_sdl.c 	if (function->responseParameters) {
responseParameters 3541 ext/soap/php_sdl.c 		zend_hash_destroy(function->responseParameters);
responseParameters 3542 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 2722 ext/soap/soap.c 				    fn->responseParameters == NULL &&
responseParameters 3769 ext/soap/soap.c 			} else if (function->responseParameters) {
responseParameters 3783 ext/soap/soap.c 		if (function->responseParameters) {
responseParameters 3784 ext/soap/soap.c 			param_count = zend_hash_num_elements(function->responseParameters);
responseParameters 4485 ext/soap/soap.c 		ht = function->responseParameters;
responseParameters 4587 ext/soap/soap.c 	if (function->responseParameters &&
responseParameters 4588 ext/soap/soap.c 	    zend_hash_num_elements(function->responseParameters) > 0) {
responseParameters 4589 ext/soap/soap.c 		if (zend_hash_num_elements(function->responseParameters) == 1) {
responseParameters 4590 ext/soap/soap.c 			zend_hash_internal_pointer_reset(function->responseParameters);
responseParameters 4591 ext/soap/soap.c 			param = zend_hash_get_current_data_ptr(function->responseParameters);
responseParameters 4601 ext/soap/soap.c 			ZEND_HASH_FOREACH_PTR(function->responseParameters, param) {