attributeGroups   176 ext/soap/php_schema.c 	if (!ctx->attributeGroups) {
attributeGroups   177 ext/soap/php_schema.c 		ctx->attributeGroups = emalloc(sizeof(HashTable));
attributeGroups   178 ext/soap/php_schema.c 		zend_hash_init(ctx->attributeGroups, 0, NULL, delete_type, 0);
attributeGroups  1981 ext/soap/php_schema.c 			if (zend_hash_add_ptr(ctx->attributeGroups, key.s, newType) == NULL) {
attributeGroups  2139 ext/soap/php_schema.c 		if (ctx->attributeGroups != NULL) {
attributeGroups  2140 ext/soap/php_schema.c 			tmp = (sdlTypePtr)schema_find_by_ref(ctx->attributeGroups, attr->ref);
attributeGroups  2292 ext/soap/php_schema.c 	if (ctx->attributeGroups) {
attributeGroups  2293 ext/soap/php_schema.c 		ZEND_HASH_FOREACH_PTR(ctx->attributeGroups, type) {
attributeGroups  2316 ext/soap/php_schema.c 	if (ctx->attributeGroups) {
attributeGroups  2317 ext/soap/php_schema.c 		zend_hash_destroy(ctx->attributeGroups);
attributeGroups  2318 ext/soap/php_schema.c 		efree(ctx->attributeGroups);
attributeGroups    78 ext/soap/php_sdl.h 	HashTable *attributeGroups;  /* array of sdlTypesPtr */