Home
last modified time | relevance | path

Searched refs:ctxt (Results 1 – 10 of 10) sorted by path

/PHP-8.0/ext/dom/
H A Ddocument.c1212 if (ctxt == NULL) { in dom_document_parser()
1239 if (ctxt->sax != NULL) { in dom_document_parser()
1266 xmlParseDocument(ctxt); in dom_document_parser()
1269 ret = ctxt->myDoc; in dom_document_parser()
1270 if (ctxt->recovery) { in dom_document_parser()
1280 ctxt->myDoc = NULL; in dom_document_parser()
1283 xmlFreeParserCtxt(ctxt); in dom_document_parser()
1832 htmlParserCtxtPtr ctxt; in dom_load_html() local
1864 if (!ctxt) { in dom_load_html()
1871 if (ctxt->sax != NULL) { in dom_load_html()
[all …]
H A Dxpath.c35 static void dom_xpath_ext_function_php(xmlXPathParserContextPtr ctxt, int nargs, int type) /* {{{ */ in dom_xpath_ext_function_php() argument
52 intern = (dom_xpath_object *) ctxt->context->userData; in dom_xpath_ext_function_php()
67 obj = valuePop(ctxt); in dom_xpath_ext_function_php()
79 obj = valuePop(ctxt); in dom_xpath_ext_function_php()
137 obj = valuePop(ctxt); in dom_xpath_ext_function_php()
169 valuePush(ctxt, xmlXPathNewNodeSet(nodep)); in dom_xpath_ext_function_php()
171 valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE)); in dom_xpath_ext_function_php()
177 valuePush(ctxt, xmlXPathNewString((xmlChar *) ZSTR_VAL(str))); in dom_xpath_ext_function_php()
195 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
197 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php()
[all …]
/PHP-8.0/ext/libxml/
H A Dlibxml.c502 error_copy.ctxt = NULL; in _php_list_set_error_structure()
H A Dphp_libxml.h146 static zend_always_inline void php_libxml_sanitize_parse_ctxt_options(xmlParserCtxtPtr ctxt)
148 ctxt->loadsubset = 0;
149 ctxt->validate = 0;
150 ctxt->pedantic = 0;
151 ctxt->replaceEntities = 0;
152 ctxt->linenumbers = 0;
153 ctxt->keepBlanks = 1;
154 ctxt->options = 0;
/PHP-8.0/ext/soap/
H A Dphp_xml.c91 if (ctxt) { in soap_xmlParseFile()
95 ctxt->keepBlanks = 0; in soap_xmlParseFile()
103 xmlParseDocument(ctxt); in soap_xmlParseFile()
105 if (ctxt->wellFormed) { in soap_xmlParseFile()
106 ret = ctxt->myDoc; in soap_xmlParseFile()
113 ctxt->myDoc = NULL; in soap_xmlParseFile()
140 if (ctxt) { in soap_xmlParseMemory()
151 xmlParseDocument(ctxt); in soap_xmlParseMemory()
153 if (ctxt->wellFormed) { in soap_xmlParseMemory()
154 ret = ctxt->myDoc; in soap_xmlParseMemory()
[all …]
/PHP-8.0/ext/standard/tests/streams/
H A Dstream_context_tcp_nodelay.phpt10 $ctxt = stream_context_create([
17 "tcp://www.php.net:80", $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $ctxt);
H A Dstream_context_tcp_nodelay_fopen.phpt10 $ctxt = stream_context_create([
19 $stream = fopen("http://www.php.net", "r", false, $ctxt);
H A Dstream_context_tcp_nodelay_server.phpt8 $ctxt = stream_context_create([
15 "tcp://127.0.0.1:9099", $errno, $errstr, STREAM_SERVER_BIND | STREAM_SERVER_LISTEN, $ctxt);
/PHP-8.0/ext/xsl/
H A Dphp_xsl.h80 void xsl_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs);
81 void xsl_ext_function_object_php(xmlXPathParserContextPtr ctxt, int nargs);
H A Dxsltprocessor.c114 tctxt = xsltXPathGetTransformContext(ctxt); in xsl_ext_function_php()
136 obj = valuePop(ctxt); in xsl_ext_function_php()
150 obj = valuePop(ctxt); in xsl_ext_function_php()
225 obj = valuePop(ctxt); in xsl_ext_function_php()
299 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
305 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
398 xsltTransformContextPtr ctxt; in php_xsl_apply_stylesheet() local
454 ctxt = xsltNewTransformContext(style, doc); in php_xsl_apply_stylesheet()
455 ctxt->_private = (void *) intern; in php_xsl_apply_stylesheet()
461 ctxt->xinclude = Z_LVAL_P(doXInclude); in php_xsl_apply_stylesheet()
[all …]

Completed in 42 milliseconds