Lines Matching refs:name

289 			soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in schema", trav->name);  in load_schema()
308 xmlAttrPtr name, ns; in schema_simpleType() local
315 name = get_attribute(simpleType->properties, "name"); in schema_simpleType()
323 if (name != NULL) { in schema_simpleType()
324 newType->name = estrdup((char*)name->children->content); in schema_simpleType()
327 newType->name = estrdup(cur_type->name); in schema_simpleType()
340 cur_type->encode->details.type_str = estrdup(newType->name); in schema_simpleType()
348 } else if (name != NULL) { in schema_simpleType()
354 newType->name = estrdup((char*)name->children->content); in schema_simpleType()
364 …zend_hash_update(cur_type->elements, newType->name, strlen(newType->name)+1, &newType, sizeof(sdlT… in schema_simpleType()
368 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType()
391 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in simpleType", trav->name); in schema_simpleType()
397 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in simpleType", trav->name); in schema_simpleType()
429 newType->name = estrdup(type); in schema_list()
465 newType->name = anonymous.c; in schema_list()
480 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in list", trav->name); in schema_list()
524 newType->name = estrdup(type); in schema_union()
561 newType->name = anonymous.c; in schema_union()
574 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in union", trav->name); in schema_union()
579 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in union", trav->name); in schema_union()
610 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in simpleContent", trav->name); in schema_simpleContent()
616 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in simpleContent", trav->name); in schema_simpleContent()
721 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in restriction", trav->name); in schema_restriction_simpleContent()
727 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in restriction", trav->name); in schema_restriction_simpleContent()
792 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in restriction", trav->name); in schema_restriction_complexContent()
797 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in restriction", trav->name); in schema_restriction_complexContent()
902 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in extension", trav->name); in schema_extension_simpleContent()
907 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in extension", trav->name); in schema_extension_simpleContent()
972 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in extension", trav->name); in schema_extension_complexContent()
977 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in extension", trav->name); in schema_extension_complexContent()
1039 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in all", trav->name); in schema_all()
1060 xmlAttrPtr ns, name, ref = NULL; in schema_group() local
1068 name = get_attribute(groupType->properties, "name"); in schema_group()
1069 if (name == NULL) { in schema_group()
1070 name = ref = get_attribute(groupType->properties, "ref"); in schema_group()
1073 if (name) { in schema_group()
1111 smart_str_appends(&key, (char*)name->children->content); in schema_group()
1172 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in group", trav->name); in schema_group()
1176 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in group", trav->name); in schema_group()
1223 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in choice", trav->name); in schema_choice()
1273 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in sequence", trav->name); in schema_sequence()
1333 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in complexContent", trav->name); in schema_complexContent()
1339 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in complexContent", trav->name); in schema_complexContent()
1360 xmlAttrPtr attrs, name, ns; in schema_complexType() local
1368 name = get_attribute(attrs, "name"); in schema_complexType()
1376 if (name != NULL) { in schema_complexType()
1377 newType->name = estrdup((char*)name->children->content); in schema_complexType()
1380 newType->name = estrdup(cur_type->name); in schema_complexType()
1393 cur_type->encode->details.type_str = estrdup(newType->name); in schema_complexType()
1401 } else if (name) { in schema_complexType()
1407 newType->name = estrdup((char*)name->children->content); in schema_complexType()
1413 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType()
1455 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in complexType", trav->name); in schema_complexType()
1462 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in complexType", trav->name); in schema_complexType()
1489 xmlAttrPtr attrs, attr, ns, name, type, ref = NULL; in schema_element() local
1497 name = get_attribute(attrs, "name"); in schema_element()
1498 if (name == NULL) { in schema_element()
1499 name = ref = get_attribute(attrs, "ref"); in schema_element()
1502 if (name) { in schema_element()
1531 newType->name = estrdup(type); in schema_element()
1538 newType->name = estrdup((char*)name->children->content); in schema_element()
1552 smart_str_appends(&key, newType->name); in schema_element()
1559 smart_str_appends(&key, newType->name); in schema_element()
1706 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in element", trav->name); in schema_element()
1731 xmlAttrPtr attr, name, ref = NULL, type = NULL; in schema_attribute() local
1734 name = get_attribute(attrType->properties, "name"); in schema_attribute()
1735 if (name == NULL) { in schema_attribute()
1736 name = ref = get_attribute(attrType->properties, "ref"); in schema_attribute()
1738 if (name) { in schema_attribute()
1781 smart_str_appends(&key, (char*)name->children->content); in schema_attribute()
1838 newAttr->name = estrdup((char*)attr->children->content); in schema_attribute()
1882 smart_str_appends(&key2, (char*)attr->name); in schema_attribute()
1930 dummy_type->name = anonymous.c; in schema_attribute()
1940 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in attribute", trav->name); in schema_attribute()
1948 xmlAttrPtr name, ref = NULL; in schema_attributeGroup() local
1951 name = get_attribute(attrGroup->properties, "name"); in schema_attributeGroup()
1952 if (name == NULL) { in schema_attributeGroup()
1953 name = ref = get_attribute(attrGroup->properties, "ref"); in schema_attributeGroup()
1955 if (name) { in schema_attributeGroup()
1967 newType->name = estrdup((char*)name->children->content); in schema_attributeGroup()
1972 smart_str_appends(&key, newType->name); in schema_attributeGroup()
2037 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in attributeGroup", trav->name); in schema_attributeGroup()
2042 soap_error1(E_ERROR, "Parsing Schema: unexpected <%s> in attributeGroup", trav->name); in schema_attributeGroup()
2089 if ((*tmp)->name != NULL && attr->name == NULL) { in schema_attribute_fixup()
2090 attr->name = estrdup((*tmp)->name); in schema_attribute_fixup()
2117 if (attr->name == NULL && attr->ref != NULL) { in schema_attribute_fixup()
2118 char *name = strrchr(attr->ref, ':'); in schema_attribute_fixup() local
2119 if (name) { in schema_attribute_fixup()
2120 attr->name = estrdup(name+1); in schema_attribute_fixup()
2122 attr->name = estrdup(attr->ref); in schema_attribute_fixup()
2154 if (newAttr->name) {newAttr->name = estrdup(newAttr->name);} in schema_attributegroup_fixup()
2388 if (type->name) { in delete_type()
2389 efree(type->name); in delete_type()
2435 if (type->name) { in delete_type_persistent()
2436 free(type->name); in delete_type_persistent()
2515 if (attr->name) { in delete_attribute()
2516 efree(attr->name); in delete_attribute()
2541 if (attr->name) { in delete_attribute_persistent()
2542 free(attr->name); in delete_attribute_persistent()