Lines Matching refs:NULL

44 	xmlNodePtr del = NULL;  in cleanup_xml_node()
47 while (trav != NULL) { in cleanup_xml_node()
48 if (del != NULL) { in cleanup_xml_node()
51 del = NULL; in cleanup_xml_node()
60 } else if (trav->children != NULL) { in cleanup_xml_node()
65 if (del != NULL) { in cleanup_xml_node()
81 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseFile()
99 ctxt->sax->warning = NULL; in soap_xmlParseFile()
100 ctxt->sax->error = NULL; in soap_xmlParseFile()
108 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseFile()
112 ret = NULL; in soap_xmlParseFile()
114 ctxt->myDoc = NULL; in soap_xmlParseFile()
118 ret = NULL; in soap_xmlParseFile()
133 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseMemory()
146 ctxt->sax->warning = NULL; in soap_xmlParseMemory()
147 ctxt->sax->error = NULL; in soap_xmlParseMemory()
155 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseMemory()
159 ret = NULL; in soap_xmlParseMemory()
161 ctxt->myDoc = NULL; in soap_xmlParseMemory()
165 ret = NULL; in soap_xmlParseMemory()
187 return xmlSearchNs(node->doc, node->parent, NULL); in attr_find_ns()
196 return xmlSearchNs(node->doc, node, NULL); in node_find_ns()
202 if (name == NULL || ((node->name) && strcmp((char*)node->name, name) == 0)) { in attr_is_equal_ex()
218 if (name == NULL || ((node->name) && strcmp((char*)node->name, name) == 0)) { in node_is_equal_ex()
235 while (node!=NULL) { in get_attribute_ex()
241 return NULL; in get_attribute_ex()
246 while (node!=NULL) { in get_node_ex()
252 return NULL; in get_node_ex()
257 while (node != NULL) { in get_node_recurisve_ex()
260 } else if (node->children != NULL) { in get_node_recurisve_ex()
268 return NULL; in get_node_recurisve_ex()
275 while (node != NULL) { in get_node_with_attribute_ex()
276 if (name != NULL) { in get_node_with_attribute_ex()
278 if (node==NULL) { in get_node_with_attribute_ex()
279 return NULL; in get_node_with_attribute_ex()
284 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_ex()
289 return NULL; in get_node_with_attribute_ex()
294 while (node != NULL) { in get_node_with_attribute_recursive_ex()
297 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_recursive_ex()
301 if (node->children != NULL) { in get_node_with_attribute_recursive_ex()
309 return NULL; in get_node_with_attribute_recursive_ex()
316 if (found != NULL && found != (char*)inval) { in parse_namespace()
321 (*namespace) = NULL; in parse_namespace()