ctxt             1494 ext/dom/document.c     xmlParserCtxtPtr ctxt = NULL;
ctxt             1528 ext/dom/document.c 			ctxt = xmlCreateFileParserCtxt(file_dest);
ctxt             1532 ext/dom/document.c 		ctxt = xmlCreateMemoryParserCtxt(source, source_len);
ctxt             1535 ext/dom/document.c 	if (ctxt == NULL) {
ctxt             1547 ext/dom/document.c 			if(ctxt->directory != NULL) {
ctxt             1548 ext/dom/document.c 				xmlFree((char *) ctxt->directory);
ctxt             1555 ext/dom/document.c 			ctxt->directory = (char *) xmlCanonicPath((const xmlChar *) resolved_path);
ctxt             1559 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
ctxt             1560 ext/dom/document.c 	ctxt->vctxt.warning = php_libxml_ctx_warning;
ctxt             1562 ext/dom/document.c 	if (ctxt->sax != NULL) {
ctxt             1563 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
ctxt             1564 ext/dom/document.c 		ctxt->sax->warning = php_libxml_ctx_warning;
ctxt             1580 ext/dom/document.c 	xmlCtxtUseOptions(ctxt, options);
ctxt             1582 ext/dom/document.c 	ctxt->recovery = recover;
ctxt             1588 ext/dom/document.c 	xmlParseDocument(ctxt);
ctxt             1590 ext/dom/document.c 	if (ctxt->wellFormed || recover) {
ctxt             1591 ext/dom/document.c 		ret = ctxt->myDoc;
ctxt             1592 ext/dom/document.c 		if (ctxt->recovery) {
ctxt             1596 ext/dom/document.c 		if (ret && ret->URL == NULL && ctxt->directory != NULL) {
ctxt             1597 ext/dom/document.c 			ret->URL = xmlStrdup(ctxt->directory);
ctxt             1601 ext/dom/document.c 		xmlFreeDoc(ctxt->myDoc);
ctxt             1602 ext/dom/document.c 		ctxt->myDoc = NULL;
ctxt             1605 ext/dom/document.c 	xmlFreeParserCtxt(ctxt);
ctxt             2126 ext/dom/document.c 	htmlParserCtxtPtr ctxt;
ctxt             2144 ext/dom/document.c 		ctxt = htmlCreateFileParserCtxt(source, NULL);
ctxt             2147 ext/dom/document.c 		ctxt = htmlCreateMemoryParserCtxt(source, source_len);
ctxt             2150 ext/dom/document.c 	if (!ctxt) {
ctxt             2155 ext/dom/document.c 		htmlCtxtUseOptions(ctxt, options);
ctxt             2158 ext/dom/document.c 	ctxt->vctxt.error = php_libxml_ctx_error;
ctxt             2159 ext/dom/document.c 	ctxt->vctxt.warning = php_libxml_ctx_warning;
ctxt             2160 ext/dom/document.c 	if (ctxt->sax != NULL) {
ctxt             2161 ext/dom/document.c 		ctxt->sax->error = php_libxml_ctx_error;
ctxt             2162 ext/dom/document.c 		ctxt->sax->warning = php_libxml_ctx_warning;
ctxt             2164 ext/dom/document.c 	htmlParseDocument(ctxt);
ctxt             2165 ext/dom/document.c 	newdoc = ctxt->myDoc;
ctxt             2166 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               95 ext/dom/xpath.c 		intern = (dom_xpath_object *) ctxt->context->userData;
ctxt              110 ext/dom/xpath.c 			obj = valuePop(ctxt);
ctxt              123 ext/dom/xpath.c 		obj = valuePop(ctxt);
ctxt              183 ext/dom/xpath.c 	obj = valuePop(ctxt);
ctxt              212 ext/dom/xpath.c 		valuePush(ctxt, xmlXPathNewString((xmlChar *)""));
ctxt              233 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewNodeSet(nodep));
ctxt              235 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewBoolean(retval->value.lval));
ctxt              238 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewString((xmlChar *)""));
ctxt              241 ext/dom/xpath.c 				valuePush(ctxt, xmlXPathNewString( Z_STRVAL_P(retval)));
ctxt              258 ext/dom/xpath.c static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              260 ext/dom/xpath.c 	dom_xpath_ext_function_php(ctxt, nargs, 1);
ctxt              264 ext/dom/xpath.c static void dom_xpath_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              266 ext/dom/xpath.c 	dom_xpath_ext_function_php(ctxt, nargs, 2);
ctxt              492 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              144 ext/soap/php_xml.c 	ctxt = xmlCreateMemoryParserCtxt(buf, buf_size);
ctxt              145 ext/soap/php_xml.c 	if (ctxt) {
ctxt              148 ext/soap/php_xml.c 		ctxt->sax->ignorableWhitespace = soap_ignorableWhitespace;
ctxt              149 ext/soap/php_xml.c 		ctxt->sax->comment = soap_Comment;
ctxt              150 ext/soap/php_xml.c 		ctxt->sax->warning = NULL;
ctxt              151 ext/soap/php_xml.c 		ctxt->sax->error = NULL;
ctxt              154 ext/soap/php_xml.c 		ctxt->options |= XML_PARSE_HUGE;
ctxt              157 ext/soap/php_xml.c 		xmlParseDocument(ctxt);
ctxt              159 ext/soap/php_xml.c 		if (ctxt->wellFormed) {
ctxt              160 ext/soap/php_xml.c 			ret = ctxt->myDoc;
ctxt              161 ext/soap/php_xml.c 			if (ret->URL == NULL && ctxt->directory != NULL) {
ctxt              162 ext/soap/php_xml.c 				ret->URL = xmlCharStrdup(ctxt->directory);
ctxt              166 ext/soap/php_xml.c 			xmlFreeDoc(ctxt->myDoc);
ctxt              167 ext/soap/php_xml.c 			ctxt->myDoc = NULL;
ctxt              169 ext/soap/php_xml.c 		xmlFreeParserCtxt(ctxt);
ctxt               76 ext/xsl/php_xsl.h void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs);
ctxt               77 ext/xsl/php_xsl.h void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
ctxt              182 ext/xsl/xsltprocessor.c static void xsl_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */
ctxt              203 ext/xsl/xsltprocessor.c 		tctxt = xsltXPathGetTransformContext(ctxt);
ctxt              225 ext/xsl/xsltprocessor.c 			obj = valuePop(ctxt);
ctxt              240 ext/xsl/xsltprocessor.c 		obj = valuePop(ctxt);
ctxt              310 ext/xsl/xsltprocessor.c 	obj = valuePop(ctxt);
ctxt              316 ext/xsl/xsltprocessor.c 		valuePush(ctxt, xmlXPathNewString(""));
ctxt              338 ext/xsl/xsltprocessor.c 		valuePush(ctxt, xmlXPathNewString(""));
ctxt              342 ext/xsl/xsltprocessor.c 		valuePush(ctxt, xmlXPathNewString(""));
ctxt              348 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewString(""));
ctxt              364 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewNodeSet(nodep));
ctxt              366 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewBoolean(retval->value.lval));
ctxt              369 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewString(""));
ctxt              372 ext/xsl/xsltprocessor.c 				valuePush(ctxt, xmlXPathNewString( Z_STRVAL_P(retval)));
ctxt              389 ext/xsl/xsltprocessor.c void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              391 ext/xsl/xsltprocessor.c 	xsl_ext_function_php(ctxt, nargs, 1);
ctxt              395 ext/xsl/xsltprocessor.c void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */
ctxt              397 ext/xsl/xsltprocessor.c 	xsl_ext_function_php(ctxt, nargs, 2);
ctxt              493 ext/xsl/xsltprocessor.c 	xsltTransformContextPtr ctxt;
ctxt              545 ext/xsl/xsltprocessor.c 	ctxt = xsltNewTransformContext(style, doc);
ctxt              546 ext/xsl/xsltprocessor.c 	ctxt->_private = (void *) intern;
ctxt              555 ext/xsl/xsltprocessor.c 		ctxt->xinclude = Z_LVAL_P(doXInclude);
ctxt              607 ext/xsl/xsltprocessor.c 		if (0 != xsltSetCtxtSecurityPrefs(secPrefs, ctxt)) {
ctxt              615 ext/xsl/xsltprocessor.c 		newdocp = xsltApplyStylesheetUser(style, doc, (const char**) params,  NULL, f, ctxt);
ctxt              621 ext/xsl/xsltprocessor.c 	xsltFreeTransformContext(ctxt);