extraAttributes  2389 ext/soap/php_encoding.c 		    (*arrayType)->extraAttributes &&
extraAttributes  2390 ext/soap/php_encoding.c 		    zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":arrayType", sizeof(WSDL_NAMESPACE":arrayType"), (void **)&ext) == SUCCESS) {
extraAttributes  2438 ext/soap/php_encoding.c 		           (*arrayType)->extraAttributes &&
extraAttributes  2439 ext/soap/php_encoding.c 		           zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":itemType", sizeof(WSDL_NAMESPACE":itemType"), (void **)&ext) == SUCCESS) {
extraAttributes  2449 ext/soap/php_encoding.c 			    (*arrayType)->extraAttributes &&
extraAttributes  2450 ext/soap/php_encoding.c 			    zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":arraySize", sizeof(WSDL_NAMESPACE":arraysize"), (void **)&ext) == SUCCESS) {
extraAttributes  2470 ext/soap/php_encoding.c 		           (*arrayType)->extraAttributes &&
extraAttributes  2471 ext/soap/php_encoding.c 		           zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":arraySize", sizeof(WSDL_NAMESPACE":arraySize"), (void **)&ext) == SUCCESS) {
extraAttributes  2635 ext/soap/php_encoding.c 	           (*arrayType)->extraAttributes &&
extraAttributes  2636 ext/soap/php_encoding.c 	           zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":arrayType", sizeof(WSDL_NAMESPACE":arrayType"), (void **)&ext) == SUCCESS) {
extraAttributes  2657 ext/soap/php_encoding.c 	           (*arrayType)->extraAttributes &&
extraAttributes  2658 ext/soap/php_encoding.c 	           zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":itemType", sizeof(WSDL_NAMESPACE":itemType"), (void **)&ext) == SUCCESS) {
extraAttributes  2667 ext/soap/php_encoding.c 		    (*arrayType)->extraAttributes &&
extraAttributes  2668 ext/soap/php_encoding.c 		    zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":arraySize", sizeof(WSDL_NAMESPACE":arraysize"), (void **)&ext) == SUCCESS) {
extraAttributes  2680 ext/soap/php_encoding.c 	           (*arrayType)->extraAttributes &&
extraAttributes  2681 ext/soap/php_encoding.c 	           zend_hash_find((*arrayType)->extraAttributes, WSDL_NAMESPACE":arraySize", sizeof(WSDL_NAMESPACE":arraysize"), (void **)&ext) == SUCCESS) {
extraAttributes  1875 ext/soap/php_schema.c 				if (!newAttr->extraAttributes) {
extraAttributes  1876 ext/soap/php_schema.c 					newAttr->extraAttributes = emalloc(sizeof(HashTable));
extraAttributes  1877 ext/soap/php_schema.c 					zend_hash_init(newAttr->extraAttributes, 0, NULL, delete_extra_attribute, 0);
extraAttributes  1884 ext/soap/php_schema.c 				zend_hash_add(newAttr->extraAttributes, key2.c, key2.len + 1, &ext, sizeof(sdlExtraAttributePtr), NULL);
extraAttributes  2107 ext/soap/php_schema.c 				if ((*tmp)->extraAttributes != NULL) {
extraAttributes  2110 ext/soap/php_schema.c 					attr->extraAttributes = emalloc(sizeof(HashTable));
extraAttributes  2111 ext/soap/php_schema.c 					zend_hash_init(attr->extraAttributes, zend_hash_num_elements((*tmp)->extraAttributes), NULL, delete_extra_attribute, 0);
extraAttributes  2112 ext/soap/php_schema.c 					zend_hash_copy(attr->extraAttributes, (*tmp)->extraAttributes, copy_extra_attribute, &node, sizeof(xmlNodePtr));
extraAttributes  2155 ext/soap/php_schema.c 							if (newAttr->extraAttributes) {
extraAttributes  2158 ext/soap/php_schema.c 								zend_hash_init(ht, zend_hash_num_elements(newAttr->extraAttributes), NULL, delete_extra_attribute, 0);
extraAttributes  2159 ext/soap/php_schema.c 								zend_hash_copy(ht, newAttr->extraAttributes, copy_extra_attribute, &node, sizeof(xmlNodePtr));
extraAttributes  2160 ext/soap/php_schema.c 								newAttr->extraAttributes = ht;
extraAttributes  2524 ext/soap/php_schema.c 	if (attr->extraAttributes) {
extraAttributes  2525 ext/soap/php_schema.c 		zend_hash_destroy(attr->extraAttributes);
extraAttributes  2526 ext/soap/php_schema.c 		efree(attr->extraAttributes);
extraAttributes  2550 ext/soap/php_schema.c 	if (attr->extraAttributes) {
extraAttributes  2551 ext/soap/php_schema.c 		zend_hash_destroy(attr->extraAttributes);
extraAttributes  2552 ext/soap/php_schema.c 		free(attr->extraAttributes);
extraAttributes  1244 ext/soap/php_sdl.c 		attr->extraAttributes = emalloc(sizeof(HashTable));
extraAttributes  1245 ext/soap/php_sdl.c 		zend_hash_init(attr->extraAttributes, i, NULL, delete_extra_attribute, 0);
extraAttributes  1248 ext/soap/php_sdl.c 			sdl_deserialize_key(attr->extraAttributes, x, in);
extraAttributes  1854 ext/soap/php_sdl.c 	if (attr->extraAttributes) {
extraAttributes  1855 ext/soap/php_sdl.c 		i = zend_hash_num_elements(attr->extraAttributes);
extraAttributes  1862 ext/soap/php_sdl.c 		zend_hash_internal_pointer_reset(attr->extraAttributes);
extraAttributes  1863 ext/soap/php_sdl.c 		while (zend_hash_get_current_data(attr->extraAttributes, (void**)&tmp) == SUCCESS) {
extraAttributes  1864 ext/soap/php_sdl.c 			sdl_serialize_key(attr->extraAttributes, out);
extraAttributes  1867 ext/soap/php_sdl.c 			zend_hash_move_forward(attr->extraAttributes);
extraAttributes  2641 ext/soap/php_sdl.c 	if (pattr->extraAttributes) {
extraAttributes  2644 ext/soap/php_sdl.c 		pattr->extraAttributes = malloc(sizeof(HashTable));
extraAttributes  2645 ext/soap/php_sdl.c 		zend_hash_init(pattr->extraAttributes, zend_hash_num_elements(attr->extraAttributes), NULL, delete_extra_attribute_persistent, 1);
extraAttributes  2647 ext/soap/php_sdl.c 		zend_hash_internal_pointer_reset(pattr->extraAttributes);
extraAttributes  2648 ext/soap/php_sdl.c 		while (zend_hash_get_current_data(attr->extraAttributes, (void**)&tmp) == SUCCESS) {
extraAttributes  2649 ext/soap/php_sdl.c 			if (zend_hash_get_current_key_ex(attr->extraAttributes, &key, &key_len, &index, 0, NULL) == HASH_KEY_IS_STRING) {			
extraAttributes  2660 ext/soap/php_sdl.c 				zend_hash_add(pattr->extraAttributes, key, key_len, (void*)&pextra, sizeof(sdlExtraAttributePtr), NULL);
extraAttributes  2663 ext/soap/php_sdl.c 			zend_hash_move_forward(attr->extraAttributes);
extraAttributes   252 ext/soap/php_sdl.h 	HashTable *extraAttributes;			/* array of sdlExtraAttribute */
extraAttributes  4772 ext/soap/soap.c 				      (*attr)->extraAttributes &&
extraAttributes  4773 ext/soap/soap.c 				      zend_hash_find((*attr)->extraAttributes, WSDL_NAMESPACE":arrayType", sizeof(WSDL_NAMESPACE":arrayType"), (void **)&ext) == SUCCESS) {
extraAttributes  4797 ext/soap/soap.c 					      (*attr)->extraAttributes &&
extraAttributes  4798 ext/soap/soap.c 					      zend_hash_find((*attr)->extraAttributes, WSDL_NAMESPACE":itemType", sizeof(WSDL_NAMESPACE":arrayType"), (void **)&ext) == SUCCESS) {
extraAttributes  4817 ext/soap/soap.c 					      (*attr)->extraAttributes &&
extraAttributes  4818 ext/soap/soap.c 					      zend_hash_find((*attr)->extraAttributes, WSDL_NAMESPACE":itemType", sizeof(WSDL_NAMESPACE":arraySize"), (void **)&ext) == SUCCESS) {