Lines Matching refs:children

54 	trav = response->children;  in parse_packet_soap()
90 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
101 trav = env->children; in parse_packet_soap()
140 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
166 } else if (strcmp((char*)attr->children->content, SOAP_1_1_ENC_NAMESPACE) != 0) { in parse_packet_soap()
177 fault = get_node_ex(body->children,"Fault",envelope_ns); in parse_packet_soap()
186 tmp = get_node(fault->children, "faultcode"); in parse_packet_soap()
187 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
188 faultcode = (char*)tmp->children->content; in parse_packet_soap()
191 tmp = get_node(fault->children, "faultstring"); in parse_packet_soap()
192 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
198 tmp = get_node(fault->children, "faultactor"); in parse_packet_soap()
199 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
205 tmp = get_node(fault->children, "detail"); in parse_packet_soap()
210 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
211 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
212 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
213 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
214 faultcode = (char*)tmp->children->content; in parse_packet_soap()
218 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
219 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
221 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
222 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
229 tmp = get_node(fault->children,"Detail"); in parse_packet_soap()
250 resp = body->children; in parse_packet_soap()
298 val = get_node(cur->children, param->paramName); in parse_packet_soap()
301 val = get_node(cur->children, "return"); in parse_packet_soap()
304 val = get_node(cur->children, "result"); in parse_packet_soap()
306 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap()
307 val = cur->children; in parse_packet_soap()
337 val = resp->children; in parse_packet_soap()
391 trav = head->children; in parse_packet_soap()