Lines Matching refs:ctxt

82 	xmlParserCtxtPtr ctxt = NULL;  in soap_xmlParseFile()  local
92 ctxt = xmlCreateFileParserCtxt(filename); in soap_xmlParseFile()
94 if (ctxt) { in soap_xmlParseFile()
97 ctxt->keepBlanks = 0; in soap_xmlParseFile()
98 ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace; in soap_xmlParseFile()
99 ctxt->sax->comment = soap_Comment; in soap_xmlParseFile()
100 ctxt->sax->warning = NULL; in soap_xmlParseFile()
101 ctxt->sax->error = NULL; in soap_xmlParseFile()
104 ctxt->options |= XML_PARSE_HUGE; in soap_xmlParseFile()
107 xmlParseDocument(ctxt); in soap_xmlParseFile()
109 if (ctxt->wellFormed) { in soap_xmlParseFile()
110 ret = ctxt->myDoc; in soap_xmlParseFile()
111 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseFile()
112 ret->URL = xmlCharStrdup(ctxt->directory); in soap_xmlParseFile()
116 xmlFreeDoc(ctxt->myDoc); in soap_xmlParseFile()
117 ctxt->myDoc = NULL; in soap_xmlParseFile()
119 xmlFreeParserCtxt(ctxt); in soap_xmlParseFile()
136 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseMemory() local
144 ctxt = xmlCreateMemoryParserCtxt(buf, buf_size); in soap_xmlParseMemory()
145 if (ctxt) { in soap_xmlParseMemory()
148 ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace; in soap_xmlParseMemory()
149 ctxt->sax->comment = soap_Comment; in soap_xmlParseMemory()
150 ctxt->sax->warning = NULL; in soap_xmlParseMemory()
151 ctxt->sax->error = NULL; in soap_xmlParseMemory()
154 ctxt->options |= XML_PARSE_HUGE; in soap_xmlParseMemory()
157 xmlParseDocument(ctxt); in soap_xmlParseMemory()
159 if (ctxt->wellFormed) { in soap_xmlParseMemory()
160 ret = ctxt->myDoc; in soap_xmlParseMemory()
161 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseMemory()
162 ret->URL = xmlCharStrdup(ctxt->directory); in soap_xmlParseMemory()
166 xmlFreeDoc(ctxt->myDoc); in soap_xmlParseMemory()
167 ctxt->myDoc = NULL; in soap_xmlParseMemory()
169 xmlFreeParserCtxt(ctxt); in soap_xmlParseMemory()