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()
187 tmp = get_node(fault->children, "faultcode"); in parse_packet_soap()
188 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
189 faultcode = (char*)tmp->children->content; in parse_packet_soap()
192 tmp = get_node(fault->children, "faultstring"); in parse_packet_soap()
193 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
199 tmp = get_node(fault->children, "faultactor"); in parse_packet_soap()
200 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
206 tmp = get_node(fault->children, "detail"); in parse_packet_soap()
211 tmp = get_node(fault->children, "Code"); in parse_packet_soap()
212 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
213 tmp = get_node(tmp->children, "Value"); in parse_packet_soap()
214 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
215 faultcode = (char*)tmp->children->content; in parse_packet_soap()
219 tmp = get_node(fault->children,"Reason"); in parse_packet_soap()
220 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
222 tmp = get_node(tmp->children,"Text"); in parse_packet_soap()
223 if (tmp != NULL && tmp->children != NULL) { in parse_packet_soap()
230 tmp = get_node(fault->children,"Detail"); in parse_packet_soap()
251 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()
343 val = resp->children; in parse_packet_soap()
396 trav = head->children; in parse_packet_soap()