ptr_map          2412 ext/soap/php_sdl.c static void make_persistent_sdl_type_ref(sdlTypePtr *type, HashTable *ptr_map, HashTable *bp_types)
ptr_map          2416 ext/soap/php_sdl.c 	if (zend_hash_find(ptr_map, (char *)type, sizeof(sdlTypePtr), (void**)&tmp) == SUCCESS) {
ptr_map          2424 ext/soap/php_sdl.c static void make_persistent_sdl_encoder_ref(encodePtr *enc, HashTable *ptr_map, HashTable *bp_encoders)
ptr_map          2433 ext/soap/php_sdl.c 	if (zend_hash_find(ptr_map, (char *)enc, sizeof(encodePtr), (void**)&tmp) == SUCCESS) {
ptr_map          2441 ext/soap/php_sdl.c static HashTable* make_persistent_sdl_function_headers(HashTable *headers, HashTable *ptr_map)
ptr_map          2468 ext/soap/php_sdl.c 			if (zend_hash_find(ptr_map, (char*)&pheader->encode, sizeof(encodePtr), (void**)&penc) == FAILURE) {
ptr_map          2474 ext/soap/php_sdl.c 			if (zend_hash_find(ptr_map, (char*)&pheader->element, sizeof(sdlTypePtr), (void**)&ptype) == FAILURE) {
ptr_map          2481 ext/soap/php_sdl.c 			pheader->headerfaults = make_persistent_sdl_function_headers(pheader->headerfaults, ptr_map);
ptr_map          2497 ext/soap/php_sdl.c static void make_persistent_sdl_soap_body(sdlSoapBindingFunctionBodyPtr body, HashTable *ptr_map)
ptr_map          2504 ext/soap/php_sdl.c 		body->headers = make_persistent_sdl_function_headers(body->headers, ptr_map);
ptr_map          2509 ext/soap/php_sdl.c static HashTable* make_persistent_sdl_parameters(HashTable *params, HashTable *ptr_map)
ptr_map          2533 ext/soap/php_sdl.c 			if (zend_hash_find(ptr_map, (char*)&pparam->encode, sizeof(encodePtr), (void**)&penc) == FAILURE) {
ptr_map          2539 ext/soap/php_sdl.c 			if (zend_hash_find(ptr_map, (char*)&pparam->element, sizeof(sdlTypePtr), (void**)&ptype) == FAILURE) {
ptr_map          2558 ext/soap/php_sdl.c static HashTable* make_persistent_sdl_function_faults(sdlFunctionPtr func, HashTable *faults, HashTable *ptr_map)
ptr_map          2579 ext/soap/php_sdl.c 			pfault->details = make_persistent_sdl_parameters(pfault->details, ptr_map);
ptr_map          2608 ext/soap/php_sdl.c static sdlAttributePtr make_persistent_sdl_attribute(sdlAttributePtr attr, HashTable *ptr_map, HashTable *bp_types, HashTable *bp_encoders)
ptr_map          2638 ext/soap/php_sdl.c 		make_persistent_sdl_encoder_ref(&pattr->encode, ptr_map, bp_encoders);
ptr_map          2671 ext/soap/php_sdl.c static sdlContentModelPtr make_persistent_sdl_model(sdlContentModelPtr model, HashTable *ptr_map, HashTable *bp_types, HashTable *bp_encoders)
ptr_map          2683 ext/soap/php_sdl.c 				make_persistent_sdl_type_ref(&pmodel->u.element, ptr_map, bp_types);
ptr_map          2695 ext/soap/php_sdl.c 				pcontent = make_persistent_sdl_model(*tmp, ptr_map, bp_types, bp_encoders);
ptr_map          2709 ext/soap/php_sdl.c 				make_persistent_sdl_type_ref(&pmodel->u.group, ptr_map, bp_types);
ptr_map          2721 ext/soap/php_sdl.c static sdlTypePtr make_persistent_sdl_type(sdlTypePtr type, HashTable *ptr_map, HashTable *bp_types, HashTable *bp_encoders)
ptr_map          2751 ext/soap/php_sdl.c 		make_persistent_sdl_encoder_ref(&ptype->encode, ptr_map, bp_encoders);
ptr_map          2810 ext/soap/php_sdl.c 			pelem = make_persistent_sdl_type(*tmp, ptr_map, bp_types, bp_encoders);
ptr_map          2816 ext/soap/php_sdl.c 			zend_hash_add(ptr_map, (char*)tmp, sizeof(*tmp), (void*)&pelem, sizeof(sdlTypePtr), NULL);
ptr_map          2829 ext/soap/php_sdl.c 			pattr = make_persistent_sdl_attribute(*tmp, ptr_map, bp_types, bp_encoders);
ptr_map          2840 ext/soap/php_sdl.c 		ptype->model = make_persistent_sdl_model(ptype->model, ptr_map, bp_types, bp_encoders);
ptr_map          2846 ext/soap/php_sdl.c static encodePtr make_persistent_sdl_encoder(encodePtr enc, HashTable *ptr_map, HashTable *bp_types, HashTable *bp_encoders)
ptr_map          2863 ext/soap/php_sdl.c 		make_persistent_sdl_type_ref(&penc->details.sdl_type, ptr_map, bp_types);
ptr_map          2869 ext/soap/php_sdl.c static sdlBindingPtr make_persistent_sdl_binding(sdlBindingPtr bind, HashTable *ptr_map)
ptr_map          2897 ext/soap/php_sdl.c static sdlFunctionPtr make_persistent_sdl_function(sdlFunctionPtr func, HashTable *ptr_map)
ptr_map          2919 ext/soap/php_sdl.c 		if (zend_hash_find(ptr_map, (char*)&pfunc->binding, sizeof(pfunc->binding), (void**)&tmp) == FAILURE) {
ptr_map          2933 ext/soap/php_sdl.c 			make_persistent_sdl_soap_body(&soap_binding->input, ptr_map);
ptr_map          2934 ext/soap/php_sdl.c 			make_persistent_sdl_soap_body(&soap_binding->output, ptr_map);
ptr_map          2939 ext/soap/php_sdl.c 			pfunc->requestParameters = make_persistent_sdl_parameters(pfunc->requestParameters, ptr_map);
ptr_map          2942 ext/soap/php_sdl.c 			pfunc->responseParameters = make_persistent_sdl_parameters(pfunc->responseParameters, ptr_map);
ptr_map          2945 ext/soap/php_sdl.c 			pfunc->faults = make_persistent_sdl_function_faults(pfunc, pfunc->faults, ptr_map);
ptr_map          2955 ext/soap/php_sdl.c 	HashTable ptr_map;
ptr_map          2963 ext/soap/php_sdl.c 	zend_hash_init(&ptr_map, 0, NULL, NULL, 0);
ptr_map          2984 ext/soap/php_sdl.c 			ptype = make_persistent_sdl_type(*tmp, &ptr_map, &bp_types, &bp_encoders);
ptr_map          2990 ext/soap/php_sdl.c 			zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&ptype, sizeof(sdlTypePtr), NULL);
ptr_map          3004 ext/soap/php_sdl.c 			ptype = make_persistent_sdl_type(*tmp, &ptr_map, &bp_types, &bp_encoders);
ptr_map          3010 ext/soap/php_sdl.c 			zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&ptype, sizeof(sdlTypePtr), NULL);
ptr_map          3024 ext/soap/php_sdl.c 			ptype = make_persistent_sdl_type(*tmp, &ptr_map, &bp_types, &bp_encoders);
ptr_map          3030 ext/soap/php_sdl.c 			zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&ptype, sizeof(sdlTypePtr), NULL);
ptr_map          3044 ext/soap/php_sdl.c 			penc = make_persistent_sdl_encoder(*tmp, &ptr_map, &bp_types, &bp_encoders);
ptr_map          3050 ext/soap/php_sdl.c 			zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&penc, sizeof(encodePtr), NULL);
ptr_map          3061 ext/soap/php_sdl.c 			if (zend_hash_find(&ptr_map, (char*)(*tmp), sizeof(**tmp), (void**)&ptype) == FAILURE) {
ptr_map          3073 ext/soap/php_sdl.c 			if (zend_hash_find(&ptr_map, (char*)(*tmp), sizeof(**tmp), (void**)&penc) == FAILURE) {
ptr_map          3091 ext/soap/php_sdl.c 			pbind = make_persistent_sdl_binding(*tmp, &ptr_map);
ptr_map          3097 ext/soap/php_sdl.c 			zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&pbind, sizeof(sdlBindingPtr), NULL);
ptr_map          3109 ext/soap/php_sdl.c 			pfunc = make_persistent_sdl_function(*tmp, &ptr_map);
ptr_map          3115 ext/soap/php_sdl.c 			zend_hash_add(&ptr_map, (char*)tmp, sizeof(*tmp), (void*)&pfunc, sizeof(sdlFunctionPtr), NULL);
ptr_map          3129 ext/soap/php_sdl.c 			if (zend_hash_find(&ptr_map, (char*)tmp, sizeof(*tmp), (void**)&preq) == FAILURE) {
ptr_map          3140 ext/soap/php_sdl.c 	zend_hash_destroy(&ptr_map);