enumeration       700 ext/soap/php_schema.c 			if (cur_type->restrictions->enumeration == NULL) {
enumeration       701 ext/soap/php_schema.c 				cur_type->restrictions->enumeration = emalloc(sizeof(HashTable));
enumeration       702 ext/soap/php_schema.c 				zend_hash_init(cur_type->restrictions->enumeration, 0, NULL, delete_restriction_var_char, 0);
enumeration       704 ext/soap/php_schema.c 			if (zend_hash_str_add_ptr(cur_type->restrictions->enumeration, enumval->value, strlen(enumval->value), enumval) == NULL) {
enumeration      2411 ext/soap/php_schema.c 		if (type->restrictions->enumeration) {
enumeration      2412 ext/soap/php_schema.c 			zend_hash_destroy(type->restrictions->enumeration);
enumeration      2413 ext/soap/php_schema.c 			efree(type->restrictions->enumeration);
enumeration      2458 ext/soap/php_schema.c 		if (type->restrictions->enumeration) {
enumeration      2459 ext/soap/php_schema.c 			zend_hash_destroy(type->restrictions->enumeration);
enumeration      2460 ext/soap/php_schema.c 			free(type->restrictions->enumeration);
enumeration      1348 ext/soap/php_sdl.c 			type->restrictions->enumeration = emalloc(sizeof(HashTable));
enumeration      1349 ext/soap/php_sdl.c 			zend_hash_init(type->restrictions->enumeration, i, NULL, delete_restriction_var_char, 0);
enumeration      1352 ext/soap/php_sdl.c 				sdl_deserialize_key(type->restrictions->enumeration, x, in);
enumeration      1356 ext/soap/php_sdl.c 			type->restrictions->enumeration = NULL;
enumeration      1943 ext/soap/php_sdl.c 		if (type->restrictions->enumeration) {
enumeration      1944 ext/soap/php_sdl.c 			i = zend_hash_num_elements(type->restrictions->enumeration);
enumeration      1953 ext/soap/php_sdl.c 			ZEND_HASH_FOREACH_STR_KEY_PTR(type->restrictions->enumeration, key, tmp) {
enumeration      2766 ext/soap/php_sdl.c 		if (type->restrictions->enumeration) {
enumeration      2767 ext/soap/php_sdl.c 			ptype->restrictions->enumeration = malloc(sizeof(HashTable));
enumeration      2768 ext/soap/php_sdl.c 			zend_hash_init(ptype->restrictions->enumeration, zend_hash_num_elements(type->restrictions->enumeration), NULL, delete_restriction_var_char_persistent, 1);
enumeration      2769 ext/soap/php_sdl.c 			zend_hash_copy(ptype->restrictions->enumeration, type->restrictions->enumeration, make_persistent_restriction_char);
enumeration       138 ext/soap/php_sdl.h 	HashTable *enumeration;              /* array of sdlRestrictionCharPtr */