ctxt             1355 ext/dom/document.c     xmlParserCtxtPtr ctxt = NULL;
ctxt             1389 ext/dom/document.c 			ctxt = xmlCreateFileParserCtxt(file_dest);
ctxt             1393 ext/dom/document.c 		ctxt = xmlCreateMemoryParserCtxt(source, source_len);
ctxt             1396 ext/dom/document.c 	if (ctxt == NULL) {
ctxt             1408 ext/dom/document.c 			if(ctxt->directory != NULL) {
ctxt             1409 ext/dom/document.c 				xmlFree((char *) ctxt->directory);
ctxt             1416 ext/dom/document.c 			ctxt->directory = (char *) xmlCanonicPath((const xmlChar *) resolved_path);
ctxt             1420 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
ctxt             1421 ext/dom/document.c 	ctxt->vctxt.warning = php_libxml_ctx_warning;
ctxt             1423 ext/dom/document.c 	if (ctxt->sax != NULL) {
ctxt             1424 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
ctxt             1425 ext/dom/document.c 		ctxt->sax->warning = php_libxml_ctx_warning;
ctxt             1441 ext/dom/document.c 	xmlCtxtUseOptions(ctxt, options);
ctxt             1443 ext/dom/document.c 	ctxt->recovery = recover;
ctxt             1449 ext/dom/document.c 	xmlParseDocument(ctxt);
ctxt             1451 ext/dom/document.c 	if (ctxt->wellFormed || recover) {
ctxt             1452 ext/dom/document.c 		ret = ctxt->myDoc;
ctxt             1453 ext/dom/document.c 		if (ctxt->recovery) {
ctxt             1457 ext/dom/document.c 		if (ret && ret->URL == NULL && ctxt->directory != NULL) {
ctxt             1458 ext/dom/document.c 			ret->URL = xmlStrdup((xmlChar *) ctxt->directory);
ctxt             1462 ext/dom/document.c 		xmlFreeDoc(ctxt->myDoc);
ctxt             1463 ext/dom/document.c 		ctxt->myDoc = NULL;
ctxt             1466 ext/dom/document.c 	xmlFreeParserCtxt(ctxt);
ctxt             2004 ext/dom/document.c 	htmlParserCtxtPtr ctxt;
ctxt             2027 ext/dom/document.c 		ctxt = htmlCreateFileParserCtxt(source, NULL);
ctxt             2034 ext/dom/document.c 		ctxt = htmlCreateMemoryParserCtxt(source, (int)source_len);
ctxt             2037 ext/dom/document.c 	if (!ctxt) {
ctxt             2042 ext/dom/document.c 		htmlCtxtUseOptions(ctxt, (int)options);
ctxt             2045 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
ctxt             2046 ext/dom/document.c 	ctxt->vctxt.warning = php_libxml_ctx_warning;
ctxt             2047 ext/dom/document.c 	if (ctxt->sax != NULL) {
ctxt             2048 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
ctxt             2049 ext/dom/document.c 		ctxt->sax->warning = php_libxml_ctx_warning;
ctxt             2051 ext/dom/document.c 	htmlParseDocument(ctxt);
ctxt             2052 ext/dom/document.c 	newdoc = ctxt->myDoc;
ctxt             2053 ext/dom/document.c 	htmlFreeParserCtxt(ctxt);
ctxt               75 ext/dom/xpath.c static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */
ctxt               92 ext/dom/xpath.c 		intern = (dom_xpath_object *) ctxt->context->userData;
ctxt              107 ext/dom/xpath.c 			obj = valuePop(ctxt);
ctxt              119 ext/dom/xpath.c 		obj = valuePop(ctxt);
ctxt              176 ext/dom/xpath.c 	obj = valuePop(ctxt);
ctxt              201 ext/dom/xpath.c 		valuePush(ctxt, xmlXPathNewString((xmlChar *)""));
ctxt              216 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewNodeSet(nodep));
ctxt              218 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE));
ctxt              221 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewString((xmlChar *)""));
ctxt              224 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewString((xmlChar *) ZSTR_VAL(str)));
ctxt              241 ext/dom/xpath.c static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              243 ext/dom/xpath.c 	dom_xpath_ext_function_php(ctxt, nargs, 1);
ctxt              247 ext/dom/xpath.c static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              249 ext/dom/xpath.c 	dom_xpath_ext_function_php(ctxt, nargs, 2);
ctxt              498 ext/libxml/libxml.c 		error_copy.ctxt = NULL;
ctxt               82 ext/soap/php_xml.c 	xmlParserCtxtPtr ctxt = NULL;
ctxt               92 ext/soap/php_xml.c 	ctxt = xmlCreateFileParserCtxt(filename);
ctxt               94 ext/soap/php_xml.c 	if (ctxt) {
ctxt               97 ext/soap/php_xml.c 		ctxt->keepBlanks = 0;
ctxt               98 ext/soap/php_xml.c 		ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace;
ctxt               99 ext/soap/php_xml.c 		ctxt->sax->comment = soap_Comment;
ctxt              100 ext/soap/php_xml.c 		ctxt->sax->warning = NULL;
ctxt              101 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
ctxt              104 ext/soap/php_xml.c 		ctxt->options |= XML_PARSE_HUGE;
ctxt              107 ext/soap/php_xml.c 		xmlParseDocument(ctxt);
ctxt              109 ext/soap/php_xml.c 		if (ctxt->wellFormed) {
ctxt              110 ext/soap/php_xml.c 			ret = ctxt->myDoc;
ctxt              111 ext/soap/php_xml.c 			if (ret->URL == NULL && ctxt->directory != NULL) {
ctxt              112 ext/soap/php_xml.c 				ret->URL = xmlCharStrdup(ctxt->directory);
ctxt              116 ext/soap/php_xml.c 			xmlFreeDoc(ctxt->myDoc);
ctxt              117 ext/soap/php_xml.c 			ctxt->myDoc = NULL;
ctxt              119 ext/soap/php_xml.c 		xmlFreeParserCtxt(ctxt);
ctxt              136 ext/soap/php_xml.c 	xmlParserCtxtPtr ctxt = NULL;
ctxt              143 ext/soap/php_xml.c 	ctxt = xmlCreateMemoryParserCtxt(buf, buf_size);
ctxt              144 ext/soap/php_xml.c 	if (ctxt) {
ctxt              147 ext/soap/php_xml.c 		ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace;
ctxt              148 ext/soap/php_xml.c 		ctxt->sax->comment = soap_Comment;
ctxt              149 ext/soap/php_xml.c 		ctxt->sax->warning = NULL;
ctxt              150 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
ctxt              153 ext/soap/php_xml.c 		ctxt->options |= XML_PARSE_HUGE;
ctxt              156 ext/soap/php_xml.c 		xmlParseDocument(ctxt);
ctxt              158 ext/soap/php_xml.c 		if (ctxt->wellFormed) {
ctxt              159 ext/soap/php_xml.c 			ret = ctxt->myDoc;
ctxt              160 ext/soap/php_xml.c 			if (ret->URL == NULL && ctxt->directory != NULL) {
ctxt              161 ext/soap/php_xml.c 				ret->URL = xmlCharStrdup(ctxt->directory);
ctxt              165 ext/soap/php_xml.c 			xmlFreeDoc(ctxt->myDoc);
ctxt              166 ext/soap/php_xml.c 			ctxt->myDoc = NULL;
ctxt              168 ext/soap/php_xml.c 		xmlFreeParserCtxt(ctxt);
ctxt               85 ext/xsl/php_xsl.h void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs);
ctxt               86 ext/xsl/php_xsl.h void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
ctxt              177 ext/xsl/xsltprocessor.c static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */
ctxt              197 ext/xsl/xsltprocessor.c 		tctxt = xsltXPathGetTransformContext(ctxt);
ctxt              219 ext/xsl/xsltprocessor.c 			obj = valuePop(ctxt);
ctxt              233 ext/xsl/xsltprocessor.c 		obj = valuePop(ctxt);
ctxt              306 ext/xsl/xsltprocessor.c 	obj = valuePop(ctxt);
ctxt              310 ext/xsl/xsltprocessor.c 		valuePush(ctxt, xmlXPathNewString((const xmlChar *) ""));
ctxt              330 ext/xsl/xsltprocessor.c 		valuePush(ctxt, xmlXPathNewString((const xmlChar *) ""));
ctxt              334 ext/xsl/xsltprocessor.c 		valuePush(ctxt, xmlXPathNewString((const xmlChar *) ""));
ctxt              340 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewString((const xmlChar *) ""));
ctxt              356 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewNodeSet(nodep));
ctxt              358 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE));
ctxt              361 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewString((const xmlChar *) ""));
ctxt              364 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewString((xmlChar *) Z_STRVAL(retval)));
ctxt              380 ext/xsl/xsltprocessor.c void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              382 ext/xsl/xsltprocessor.c 	xsl_ext_function_php(ctxt, nargs, 1);
ctxt              386 ext/xsl/xsltprocessor.c void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              388 ext/xsl/xsltprocessor.c 	xsl_ext_function_php(ctxt, nargs, 2);
ctxt              483 ext/xsl/xsltprocessor.c 	xsltTransformContextPtr ctxt;
ctxt              535 ext/xsl/xsltprocessor.c 	ctxt = xsltNewTransformContext(style, doc);
ctxt              536 ext/xsl/xsltprocessor.c 	ctxt->_private = (void *) intern;
ctxt              544 ext/xsl/xsltprocessor.c 		ctxt->xinclude = Z_LVAL_P(doXInclude);
ctxt              579 ext/xsl/xsltprocessor.c 		if (0 != xsltSetCtxtSecurityPrefs(secPrefs, ctxt)) {
ctxt              587 ext/xsl/xsltprocessor.c 		newdocp = xsltApplyStylesheetUser(style, doc, (const char**) params,  NULL, f, ctxt);
ctxt              593 ext/xsl/xsltprocessor.c 	xsltFreeTransformContext(ctxt);