Lines Matching refs:ctxt
79 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseFile() local
89 ctxt = xmlCreateFileParserCtxt(filename); in soap_xmlParseFile()
91 if (ctxt) { in soap_xmlParseFile()
94 php_libxml_sanitize_parse_ctxt_options(ctxt); in soap_xmlParseFile()
97 ctxt->keepBlanks = 0; in soap_xmlParseFile()
98 ctxt->options |= XML_PARSE_HUGE; in soap_xmlParseFile()
100 ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace; in soap_xmlParseFile()
101 ctxt->sax->comment = soap_Comment; in soap_xmlParseFile()
102 ctxt->sax->warning = NULL; in soap_xmlParseFile()
103 ctxt->sax->error = NULL; in soap_xmlParseFile()
106 xmlParseDocument(ctxt); in soap_xmlParseFile()
108 if (ctxt->wellFormed) { in soap_xmlParseFile()
109 ret = ctxt->myDoc; in soap_xmlParseFile()
110 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseFile()
111 ret->URL = xmlCharStrdup(ctxt->directory); in soap_xmlParseFile()
115 xmlFreeDoc(ctxt->myDoc); in soap_xmlParseFile()
116 ctxt->myDoc = NULL; in soap_xmlParseFile()
118 xmlFreeParserCtxt(ctxt); in soap_xmlParseFile()
135 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseMemory() local
142 ctxt = xmlCreateMemoryParserCtxt(buf, buf_size); in soap_xmlParseMemory()
143 if (ctxt) { in soap_xmlParseMemory()
146 php_libxml_sanitize_parse_ctxt_options(ctxt); in soap_xmlParseMemory()
147 ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace; in soap_xmlParseMemory()
148 ctxt->sax->comment = soap_Comment; in soap_xmlParseMemory()
149 ctxt->sax->warning = NULL; in soap_xmlParseMemory()
150 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()