Lines Matching refs:attr
30 xmlAttrPtr attr; in parse_packet_soap() local
82 attr = env->properties; in parse_packet_soap()
83 while (attr != NULL) { in parse_packet_soap()
84 if (attr->ns == NULL) { in parse_packet_soap()
88 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) { in parse_packet_soap()
93 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
99 attr = attr->next; in parse_packet_soap()
130 attr = body->properties; in parse_packet_soap()
131 while (attr != NULL) { in parse_packet_soap()
132 if (attr->ns == NULL) { in parse_packet_soap()
138 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) { in parse_packet_soap()
143 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
149 attr = attr->next; in parse_packet_soap()
158 attr = head->properties; in parse_packet_soap()
159 while (attr != NULL) { in parse_packet_soap()
160 if (attr->ns == NULL) { in parse_packet_soap()
164 } else if (attr_is_equal_ex(attr,"encodingStyle",SOAP_1_2_ENV_NAMESPACE)) { in parse_packet_soap()
169 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
175 attr = attr->next; in parse_packet_soap()