Lines Matching refs:attr
27 xmlAttrPtr attr; in parse_packet_soap() local
79 attr = env->properties; in parse_packet_soap()
80 while (attr != NULL) { in parse_packet_soap()
81 if (attr->ns == NULL) { in parse_packet_soap()
85 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) { in parse_packet_soap()
90 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
96 attr = attr->next; in parse_packet_soap()
127 attr = body->properties; in parse_packet_soap()
128 while (attr != NULL) { in parse_packet_soap()
129 if (attr->ns == NULL) { in parse_packet_soap()
135 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) { in parse_packet_soap()
140 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
146 attr = attr->next; in parse_packet_soap()
155 attr = head->properties; in parse_packet_soap()
156 while (attr != NULL) { in parse_packet_soap()
157 if (attr->ns == NULL) { in parse_packet_soap()
161 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) { in parse_packet_soap()
166 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
172 attr = attr->next; in parse_packet_soap()