Lines Matching refs:NULL

42 	xmlNodePtr del = NULL;  in cleanup_xml_node()
45 while (trav != NULL) { in cleanup_xml_node()
46 if (del != NULL) { in cleanup_xml_node()
49 del = NULL; in cleanup_xml_node()
58 } else if (trav->children != NULL) { in cleanup_xml_node()
63 if (del != NULL) { in cleanup_xml_node()
79 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseFile()
102 ctxt->sax->warning = NULL; in soap_xmlParseFile()
103 ctxt->sax->error = NULL; in soap_xmlParseFile()
110 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseFile()
114 ret = NULL; in soap_xmlParseFile()
116 ctxt->myDoc = NULL; in soap_xmlParseFile()
120 ret = NULL; in soap_xmlParseFile()
135 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseMemory()
149 ctxt->sax->warning = NULL; in soap_xmlParseMemory()
150 ctxt->sax->error = NULL; in soap_xmlParseMemory()
161 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseMemory()
165 ret = NULL; in soap_xmlParseMemory()
167 ctxt->myDoc = NULL; in soap_xmlParseMemory()
171 ret = NULL; in soap_xmlParseMemory()
193 return xmlSearchNs(node->doc, node->parent, NULL); in attr_find_ns()
202 return xmlSearchNs(node->doc, node, NULL); in node_find_ns()
208 if (name == NULL || ((node->name) && strcmp((char*)node->name, name) == 0)) { in attr_is_equal_ex()
224 if (name == NULL || ((node->name) && strcmp((char*)node->name, name) == 0)) { in node_is_equal_ex()
241 while (node!=NULL) { in get_attribute_ex()
247 return NULL; in get_attribute_ex()
252 while (node!=NULL) { in get_node_ex()
258 return NULL; in get_node_ex()
263 while (node != NULL) { in get_node_recurisve_ex()
266 } else if (node->children != NULL) { in get_node_recurisve_ex()
274 return NULL; in get_node_recurisve_ex()
281 while (node != NULL) { in get_node_with_attribute_ex()
282 if (name != NULL) { in get_node_with_attribute_ex()
284 if (node==NULL) { in get_node_with_attribute_ex()
285 return NULL; in get_node_with_attribute_ex()
290 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_ex()
295 return NULL; in get_node_with_attribute_ex()
300 while (node != NULL) { in get_node_with_attribute_recursive_ex()
303 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_recursive_ex()
307 if (node->children != NULL) { in get_node_with_attribute_recursive_ex()
315 return NULL; in get_node_with_attribute_recursive_ex()
322 if (found != NULL && found != (char*)inval) { in parse_namespace()
327 (*namespace) = NULL; in parse_namespace()