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()
95 ctxt->keepBlanks = 0; in soap_xmlParseFile()
96 ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace; in soap_xmlParseFile()
97 ctxt->sax->comment = soap_Comment; in soap_xmlParseFile()
98 ctxt->sax->warning = NULL; in soap_xmlParseFile()
99 ctxt->sax->error = NULL; in soap_xmlParseFile()
101 ctxt->options |= XML_PARSE_HUGE; in soap_xmlParseFile()
103 xmlParseDocument(ctxt); in soap_xmlParseFile()
105 if (ctxt->wellFormed) { in soap_xmlParseFile()
106 ret = ctxt->myDoc; in soap_xmlParseFile()
107 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseFile()
108 ret->URL = xmlCharStrdup(ctxt->directory); in soap_xmlParseFile()
112 xmlFreeDoc(ctxt->myDoc); in soap_xmlParseFile()
113 ctxt->myDoc = NULL; in soap_xmlParseFile()
115 xmlFreeParserCtxt(ctxt); in soap_xmlParseFile()
132 xmlParserCtxtPtr ctxt = NULL; in soap_xmlParseMemory() local
139 ctxt = xmlCreateMemoryParserCtxt(buf, buf_size); in soap_xmlParseMemory()
140 if (ctxt) { in soap_xmlParseMemory()
143 php_libxml_sanitize_parse_ctxt_options(ctxt); in soap_xmlParseMemory()
144 ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace; in soap_xmlParseMemory()
145 ctxt->sax->comment = soap_Comment; in soap_xmlParseMemory()
146 ctxt->sax->warning = NULL; in soap_xmlParseMemory()
147 ctxt->sax->error = NULL; in soap_xmlParseMemory()
149 ctxt->options |= XML_PARSE_HUGE; in soap_xmlParseMemory()
151 xmlParseDocument(ctxt); in soap_xmlParseMemory()
153 if (ctxt->wellFormed) { in soap_xmlParseMemory()
154 ret = ctxt->myDoc; in soap_xmlParseMemory()
155 if (ret->URL == NULL && ctxt->directory != NULL) { in soap_xmlParseMemory()
156 ret->URL = xmlCharStrdup(ctxt->directory); in soap_xmlParseMemory()
160 xmlFreeDoc(ctxt->myDoc); in soap_xmlParseMemory()
161 ctxt->myDoc = NULL; in soap_xmlParseMemory()
163 xmlFreeParserCtxt(ctxt); in soap_xmlParseMemory()