cur_type         3500 ext/soap/php_encoding.c 	int i, cur_type, prev_type, different;
cur_type         3511 ext/soap/php_encoding.c 	cur_type = prev_type = 0;
cur_type         3523 ext/soap/php_encoding.c 			cur_type = Z_LVAL_P(ztype);
cur_type         3540 ext/soap/php_encoding.c 			cur_type = APACHE_MAP;
cur_type         3544 ext/soap/php_encoding.c 			cur_type = Z_TYPE_P(tmp);
cur_type         3550 ext/soap/php_encoding.c 			if ((cur_type != prev_type) ||
cur_type         3560 ext/soap/php_encoding.c 		prev_type = cur_type;
cur_type         3592 ext/soap/php_encoding.c 			enc = get_conversion(cur_type);
cur_type           25 ext/soap/php_schema.c static int schema_simpleType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpleType, sdlTypePtr cur_type);
cur_type           26 ext/soap/php_schema.c static int schema_complexType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr compType, sdlTypePtr cur_type);
cur_type           27 ext/soap/php_schema.c static int schema_list(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr listType, sdlTypePtr cur_type);
cur_type           28 ext/soap/php_schema.c static int schema_union(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr unionType, sdlTypePtr cur_type);
cur_type           29 ext/soap/php_schema.c static int schema_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpCompType, sdlTypePtr cur_type);
cur_type           30 ext/soap/php_schema.c static int schema_restriction_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type, int simpleType);
cur_type           31 ext/soap/php_schema.c static int schema_restriction_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type);
cur_type           32 ext/soap/php_schema.c static int schema_extension_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type);
cur_type           33 ext/soap/php_schema.c static int schema_extension_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type);
cur_type           34 ext/soap/php_schema.c static int schema_sequence(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr seqType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           35 ext/soap/php_schema.c static int schema_all(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           36 ext/soap/php_schema.c static int schema_choice(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr choiceType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           37 ext/soap/php_schema.c static int schema_group(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr groupType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           38 ext/soap/php_schema.c static int schema_any(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           39 ext/soap/php_schema.c static int schema_element(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr element, sdlTypePtr cur_type, sdlContentModelPtr model);
cur_type           40 ext/soap/php_schema.c static int schema_attribute(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrType, sdlTypePtr cur_type, sdlCtx *ctx);
cur_type           41 ext/soap/php_schema.c static int schema_attributeGroup(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrType, sdlTypePtr cur_type, sdlCtx *ctx);
cur_type           49 ext/soap/php_schema.c static encodePtr create_encoder(sdlPtr sdl, sdlTypePtr cur_type, const xmlChar *ns, const xmlChar *type)
cur_type           78 ext/soap/php_schema.c 	enc->details.sdl_type = cur_type;
cur_type           89 ext/soap/php_schema.c static encodePtr get_create_encoder(sdlPtr sdl, sdlTypePtr cur_type, const xmlChar *ns, const xmlChar *type)
cur_type           93 ext/soap/php_schema.c 		enc = create_encoder(sdl, cur_type, ns, type);
cur_type          305 ext/soap/php_schema.c static int schema_simpleType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpleType, sdlTypePtr cur_type)
cur_type          316 ext/soap/php_schema.c 	if (cur_type != NULL) {
cur_type          327 ext/soap/php_schema.c 			newType->name = estrdup(cur_type->name);
cur_type          328 ext/soap/php_schema.c 			newType->namens = estrdup(cur_type->namens);
cur_type          337 ext/soap/php_schema.c 		cur_type->encode = emalloc(sizeof(encode));
cur_type          338 ext/soap/php_schema.c 		memset(cur_type->encode, 0, sizeof(encode));
cur_type          339 ext/soap/php_schema.c 		cur_type->encode->details.ns = estrdup(newType->namens);
cur_type          340 ext/soap/php_schema.c 		cur_type->encode->details.type_str = estrdup(newType->name);
cur_type          341 ext/soap/php_schema.c 		cur_type->encode->details.sdl_type = ptr;
cur_type          342 ext/soap/php_schema.c 		cur_type->encode->to_xml = sdl_guess_convert_xml;
cur_type          343 ext/soap/php_schema.c 		cur_type->encode->to_zval = sdl_guess_convert_zval;
cur_type          344 ext/soap/php_schema.c 		zend_hash_next_index_insert_ptr(sdl->encoders,  cur_type->encode);
cur_type          346 ext/soap/php_schema.c 		cur_type =ptr;
cur_type          357 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type          360 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type          361 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type          362 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          364 ext/soap/php_schema.c 			ptr = zend_hash_str_update_ptr(cur_type->elements, newType->name, strlen(newType->name), newType);
cur_type          366 ext/soap/php_schema.c 		cur_type = ptr;
cur_type          368 ext/soap/php_schema.c 		create_encoder(sdl, cur_type, ns->children->content, name->children->content);
cur_type          380 ext/soap/php_schema.c 			schema_restriction_simpleContent(sdl, tns, trav, cur_type, 1);
cur_type          383 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_LIST;
cur_type          384 ext/soap/php_schema.c 			schema_list(sdl, tns, trav, cur_type);
cur_type          387 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_UNION;
cur_type          388 ext/soap/php_schema.c 			schema_union(sdl, tns, trav, cur_type);
cur_type          411 ext/soap/php_schema.c static int schema_list(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr listType, sdlTypePtr cur_type)
cur_type          434 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type          435 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type          436 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          438 ext/soap/php_schema.c 			zend_hash_next_index_insert_ptr(cur_type->elements, newType);
cur_type          470 ext/soap/php_schema.c 		if (cur_type->elements == NULL) {
cur_type          471 ext/soap/php_schema.c 			cur_type->elements = emalloc(sizeof(HashTable));
cur_type          472 ext/soap/php_schema.c 			zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          474 ext/soap/php_schema.c 		zend_hash_next_index_insert_ptr(cur_type->elements, newType);
cur_type          494 ext/soap/php_schema.c static int schema_union(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr unionType, sdlTypePtr cur_type)
cur_type          530 ext/soap/php_schema.c 				if (cur_type->elements == NULL) {
cur_type          531 ext/soap/php_schema.c 					cur_type->elements = emalloc(sizeof(HashTable));
cur_type          532 ext/soap/php_schema.c 					zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          534 ext/soap/php_schema.c 				zend_hash_next_index_insert_ptr(cur_type->elements, newType);
cur_type          567 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type          568 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type          569 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type          571 ext/soap/php_schema.c 			zend_hash_next_index_insert_ptr(cur_type->elements, newType);
cur_type          593 ext/soap/php_schema.c static int schema_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr simpCompType, sdlTypePtr cur_type)
cur_type          604 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_RESTRICTION;
cur_type          605 ext/soap/php_schema.c 			schema_restriction_simpleContent(sdl, tns, trav, cur_type, 0);
cur_type          608 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_EXTENSION;
cur_type          609 ext/soap/php_schema.c 			schema_extension_simpleContent(sdl, tns, trav, cur_type);
cur_type          638 ext/soap/php_schema.c static int schema_restriction_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type, int simpleType)
cur_type          651 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          659 ext/soap/php_schema.c 	if (cur_type->restrictions == NULL) {
cur_type          660 ext/soap/php_schema.c 		cur_type->restrictions = emalloc(sizeof(sdlRestrictions));
cur_type          661 ext/soap/php_schema.c 		memset(cur_type->restrictions, 0, sizeof(sdlRestrictions));
cur_type          670 ext/soap/php_schema.c 		schema_simpleType(sdl, tns, trav, cur_type);
cur_type          675 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->minExclusive);
cur_type          677 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->minInclusive);
cur_type          679 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->maxExclusive);
cur_type          681 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->maxInclusive);
cur_type          683 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->totalDigits);
cur_type          685 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->fractionDigits);
cur_type          687 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->length);
cur_type          689 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->minLength);
cur_type          691 ext/soap/php_schema.c 			schema_restriction_var_int(trav, &cur_type->restrictions->maxLength);
cur_type          693 ext/soap/php_schema.c 			schema_restriction_var_char(trav, &cur_type->restrictions->whiteSpace);
cur_type          695 ext/soap/php_schema.c 			schema_restriction_var_char(trav, &cur_type->restrictions->pattern);
cur_type          700 ext/soap/php_schema.c 			if (cur_type->restrictions->enumeration == NULL) {
cur_type          701 ext/soap/php_schema.c 				cur_type->restrictions->enumeration = emalloc(sizeof(HashTable));
cur_type          702 ext/soap/php_schema.c 				zend_hash_init(cur_type->restrictions->enumeration, 0, NULL, delete_restriction_var_char, 0);
cur_type          704 ext/soap/php_schema.c 			if (zend_hash_str_add_ptr(cur_type->restrictions->enumeration, enumval->value, strlen(enumval->value), enumval) == NULL) {
cur_type          715 ext/soap/php_schema.c 				schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          717 ext/soap/php_schema.c 				schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type          743 ext/soap/php_schema.c static int schema_restriction_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr restType, sdlTypePtr cur_type)
cur_type          756 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          771 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, NULL);
cur_type          774 ext/soap/php_schema.c 			schema_all(sdl, tns, trav, cur_type, NULL);
cur_type          777 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, NULL);
cur_type          780 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, NULL);
cur_type          786 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          788 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type          868 ext/soap/php_schema.c static int schema_extension_simpleContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type)
cur_type          881 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          896 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          898 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type          923 ext/soap/php_schema.c static int schema_extension_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr extType, sdlTypePtr cur_type)
cur_type          936 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(type));
cur_type          951 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, NULL);
cur_type          954 ext/soap/php_schema.c 			schema_all(sdl, tns, trav, cur_type, NULL);
cur_type          957 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, NULL);
cur_type          960 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, NULL);
cur_type          966 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type          968 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type         1015 ext/soap/php_schema.c static int schema_all(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr all, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1025 ext/soap/php_schema.c 		cur_type->model = newModel;
cur_type         1039 ext/soap/php_schema.c 			schema_element(sdl, tns, trav, cur_type, newModel);
cur_type         1059 ext/soap/php_schema.c static int schema_group(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr groupType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1117 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1131 ext/soap/php_schema.c 			cur_type = newType;
cur_type         1136 ext/soap/php_schema.c 			cur_type->model = newModel;
cur_type         1157 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, newModel);
cur_type         1164 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, newModel);
cur_type         1171 ext/soap/php_schema.c 			schema_all(sdl, tns, trav, cur_type, newModel);
cur_type         1191 ext/soap/php_schema.c static int schema_choice(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr choiceType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1201 ext/soap/php_schema.c 		cur_type->model = newModel;
cur_type         1215 ext/soap/php_schema.c 			schema_element(sdl, tns, trav, cur_type, newModel);
cur_type         1217 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, newModel);
cur_type         1219 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, newModel);
cur_type         1221 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, newModel);
cur_type         1223 ext/soap/php_schema.c 			schema_any(sdl, tns, trav, cur_type, newModel);
cur_type         1241 ext/soap/php_schema.c static int schema_sequence(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr seqType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1251 ext/soap/php_schema.c 		cur_type->model = newModel;
cur_type         1265 ext/soap/php_schema.c 			schema_element(sdl, tns, trav, cur_type, newModel);
cur_type         1267 ext/soap/php_schema.c 			schema_group(sdl, tns, trav, cur_type, newModel);
cur_type         1269 ext/soap/php_schema.c 			schema_choice(sdl, tns, trav, cur_type, newModel);
cur_type         1271 ext/soap/php_schema.c 			schema_sequence(sdl, tns, trav, cur_type, newModel);
cur_type         1273 ext/soap/php_schema.c 			schema_any(sdl, tns, trav, cur_type, newModel);
cur_type         1293 ext/soap/php_schema.c static int schema_any(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr anyType, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1316 ext/soap/php_schema.c static int schema_complexContent(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr compCont, sdlTypePtr cur_type)
cur_type         1327 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_RESTRICTION;
cur_type         1328 ext/soap/php_schema.c 			schema_restriction_complexContent(sdl, tns, trav, cur_type);
cur_type         1331 ext/soap/php_schema.c 			cur_type->kind = XSD_TYPEKIND_EXTENSION;
cur_type         1332 ext/soap/php_schema.c 			schema_extension_complexContent(sdl, tns, trav, cur_type);
cur_type         1359 ext/soap/php_schema.c static int schema_complexType(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr compType, sdlTypePtr cur_type)
cur_type         1371 ext/soap/php_schema.c 	if (cur_type != NULL) {
cur_type         1382 ext/soap/php_schema.c 			newType->name = estrdup(cur_type->name);
cur_type         1383 ext/soap/php_schema.c 			newType->namens = estrdup(cur_type->namens);
cur_type         1392 ext/soap/php_schema.c 		cur_type->encode = emalloc(sizeof(encode));
cur_type         1393 ext/soap/php_schema.c 		memset(cur_type->encode, 0, sizeof(encode));
cur_type         1394 ext/soap/php_schema.c 		cur_type->encode->details.ns = estrdup(newType->namens);
cur_type         1395 ext/soap/php_schema.c 		cur_type->encode->details.type_str = estrdup(newType->name);
cur_type         1396 ext/soap/php_schema.c 		cur_type->encode->details.sdl_type = ptr;
cur_type         1397 ext/soap/php_schema.c 		cur_type->encode->to_xml = sdl_guess_convert_xml;
cur_type         1398 ext/soap/php_schema.c 		cur_type->encode->to_zval = sdl_guess_convert_zval;
cur_type         1399 ext/soap/php_schema.c 		zend_hash_next_index_insert_ptr(sdl->encoders, cur_type->encode);
cur_type         1401 ext/soap/php_schema.c 		cur_type = ptr;
cur_type         1414 ext/soap/php_schema.c 		cur_type = ptr;
cur_type         1415 ext/soap/php_schema.c 		create_encoder(sdl, cur_type, ns->children->content, name->children->content);
cur_type         1428 ext/soap/php_schema.c 			schema_simpleContent(sdl, tns, trav, cur_type);
cur_type         1431 ext/soap/php_schema.c 			schema_complexContent(sdl, tns, trav, cur_type);
cur_type         1435 ext/soap/php_schema.c 				schema_group(sdl, tns, trav, cur_type, NULL);
cur_type         1438 ext/soap/php_schema.c 				schema_all(sdl, tns, trav, cur_type, NULL);
cur_type         1441 ext/soap/php_schema.c 				schema_choice(sdl, tns, trav, cur_type, NULL);
cur_type         1444 ext/soap/php_schema.c 				schema_sequence(sdl, tns, trav, cur_type, NULL);
cur_type         1449 ext/soap/php_schema.c 					schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type         1451 ext/soap/php_schema.c 					schema_attributeGroup(sdl, tns, trav, cur_type, NULL);
cur_type         1488 ext/soap/php_schema.c static int schema_element(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr element, sdlTypePtr cur_type, sdlContentModelPtr model)
cur_type         1546 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1556 ext/soap/php_schema.c 			if (cur_type->elements == NULL) {
cur_type         1557 ext/soap/php_schema.c 				cur_type->elements = emalloc(sizeof(HashTable));
cur_type         1558 ext/soap/php_schema.c 				zend_hash_init(cur_type->elements, 0, NULL, delete_type, 0);
cur_type         1560 ext/soap/php_schema.c 			addHash = cur_type->elements;
cur_type         1566 ext/soap/php_schema.c 			if (cur_type == NULL) {
cur_type         1585 ext/soap/php_schema.c 		cur_type = newType;
cur_type         1599 ext/soap/php_schema.c 			cur_type->nillable = TRUE;
cur_type         1601 ext/soap/php_schema.c 			cur_type->nillable = FALSE;
cur_type         1604 ext/soap/php_schema.c 		cur_type->nillable = FALSE;
cur_type         1612 ext/soap/php_schema.c 		cur_type->fixed = estrdup((char*)attr->children->content);
cur_type         1622 ext/soap/php_schema.c 		cur_type->def = estrdup((char*)attr->children->content);
cur_type         1629 ext/soap/php_schema.c 		  cur_type->form = XSD_FORM_QUALIFIED;
cur_type         1631 ext/soap/php_schema.c 		  cur_type->form = XSD_FORM_UNQUALIFIED;
cur_type         1633 ext/soap/php_schema.c 		  cur_type->form = XSD_FORM_DEFAULT;
cur_type         1636 ext/soap/php_schema.c 	  cur_type->form = XSD_FORM_DEFAULT;
cur_type         1638 ext/soap/php_schema.c 	if (cur_type->form == XSD_FORM_DEFAULT) {
cur_type         1645 ext/soap/php_schema.c 					cur_type->form = XSD_FORM_UNQUALIFIED;
cur_type         1647 ext/soap/php_schema.c 					cur_type->form = XSD_FORM_QUALIFIED;
cur_type         1654 ext/soap/php_schema.c 			cur_type->form = XSD_FORM_UNQUALIFIED;
cur_type         1670 ext/soap/php_schema.c 			cur_type->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(cptype));
cur_type         1688 ext/soap/php_schema.c 			schema_simpleType(sdl, tns, trav, cur_type);
cur_type         1696 ext/soap/php_schema.c 			schema_complexType(sdl, tns, trav, cur_type);
cur_type         1730 ext/soap/php_schema.c static int schema_attribute(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrType, sdlTypePtr cur_type, sdlCtx *ctx)
cur_type         1787 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1790 ext/soap/php_schema.c 			if (cur_type->attributes == NULL) {
cur_type         1791 ext/soap/php_schema.c 				cur_type->attributes = emalloc(sizeof(HashTable));
cur_type         1792 ext/soap/php_schema.c 				zend_hash_init(cur_type->attributes, 0, NULL, delete_attribute, 0);
cur_type         1794 ext/soap/php_schema.c 			addHash = cur_type->attributes;
cur_type         1817 ext/soap/php_schema.c 			newAttr->encode = get_create_encoder(sdl, cur_type, nsptr->href, BAD_CAST(cptype));
cur_type         1951 ext/soap/php_schema.c static int schema_attributeGroup(sdlPtr sdl, xmlAttrPtr tns, xmlNodePtr attrGroup, sdlTypePtr cur_type, sdlCtx *ctx)
cur_type         1962 ext/soap/php_schema.c 		if (cur_type == NULL) {
cur_type         1984 ext/soap/php_schema.c 			cur_type = newType;
cur_type         1992 ext/soap/php_schema.c 			if (cur_type->attributes == NULL) {
cur_type         1993 ext/soap/php_schema.c 				cur_type->attributes = emalloc(sizeof(HashTable));
cur_type         1994 ext/soap/php_schema.c 				zend_hash_init(cur_type->attributes, 0, NULL, delete_attribute, 0);
cur_type         2012 ext/soap/php_schema.c 			zend_hash_next_index_insert_ptr(cur_type->attributes, newAttr);
cur_type         2013 ext/soap/php_schema.c 			cur_type = NULL;
cur_type         2029 ext/soap/php_schema.c 			schema_attribute(sdl, tns, trav, cur_type, NULL);
cur_type         2034 ext/soap/php_schema.c 			schema_attributeGroup(sdl, tns, trav, cur_type, NULL);