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  1975 ext/soap/php_schema.c 			if (zend_hash_add(ctx->attributeGroups, key.c, key.len + 1, &newType, sizeof(sdlTypePtr), NULL) != SUCCESS) {
attributeGroups  2136 ext/soap/php_schema.c 		if (ctx->attributeGroups != NULL) {
attributeGroups  2137 ext/soap/php_schema.c 			tmp = (sdlTypePtr*)schema_find_by_ref(ctx->attributeGroups, attr->ref);
attributeGroups  2302 ext/soap/php_schema.c 	if (ctx->attributeGroups) {
attributeGroups  2303 ext/soap/php_schema.c 		zend_hash_internal_pointer_reset(ctx->attributeGroups);
attributeGroups  2304 ext/soap/php_schema.c 		while (zend_hash_get_current_data(ctx->attributeGroups,(void**)&type) == SUCCESS) {
attributeGroups  2306 ext/soap/php_schema.c 			zend_hash_move_forward(ctx->attributeGroups);
attributeGroups  2334 ext/soap/php_schema.c 	if (ctx->attributeGroups) {
attributeGroups  2335 ext/soap/php_schema.c 		zend_hash_destroy(ctx->attributeGroups);
attributeGroups  2336 ext/soap/php_schema.c 		efree(ctx->attributeGroups);
attributeGroups    78 ext/soap/php_sdl.h 	HashTable *attributeGroups;  /* array of sdlTypesPtr */