Lines Matching refs:children

57 	trav = response->children;  in parse_packet_soap()
93 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
104 trav = env->children; in parse_packet_soap()
143 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
169 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
180 fault = get_node_ex(body->children,"Fault",envelope_ns); in parse_packet_soap()
189 tmp = get_node(fault->children, "faultcode"); in parse_packet_soap()
190 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
191 faultcode = (char*)tmp->children->content; in parse_packet_soap()
194 tmp = get_node(fault->children, "faultstring"); in parse_packet_soap()
195 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
201 tmp = get_node(fault->children, "faultactor"); in parse_packet_soap()
202 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
208 tmp = get_node(fault->children, "detail"); in parse_packet_soap()
213 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
214 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
215 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
216 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
217 faultcode = (char*)tmp->children->content; in parse_packet_soap()
221 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
222 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
224 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
225 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
232 tmp = get_node(fault->children,"Detail"); in parse_packet_soap()
253 resp = body->children; in parse_packet_soap()
301 val = get_node(cur->children, param->paramName); in parse_packet_soap()
304 val = get_node(cur->children, "return"); in parse_packet_soap()
307 val = get_node(cur->children, "result"); in parse_packet_soap()
309 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
310 val = cur->children; in parse_packet_soap()
340 val = resp->children; in parse_packet_soap()
394 trav = head->children; in parse_packet_soap()