Home
last modified time | relevance | path

Searched refs:ctxt (Results 1 – 10 of 10) sorted by last modified time

/PHP-8.1/ext/libxml/
H A Dphp_libxml.h147 static zend_always_inline void php_libxml_sanitize_parse_ctxt_options(xmlParserCtxtPtr ctxt)
149 ctxt->loadsubset = 0;
150 ctxt->validate = 0;
151 ctxt->pedantic = 0;
152 ctxt->replaceEntities = 0;
153 ctxt->linenumbers = 0;
154 ctxt->keepBlanks = 1;
155 ctxt->options = 0;
H A Dlibxml.c504 error_copy.ctxt = NULL; in _php_list_set_error_structure()
/PHP-8.1/ext/dom/
H A Ddocument.c1246 if (ctxt == NULL) { in dom_document_parser()
1273 if (ctxt->sax != NULL) { in dom_document_parser()
1300 xmlParseDocument(ctxt); in dom_document_parser()
1303 ret = ctxt->myDoc; in dom_document_parser()
1304 if (ctxt->recovery) { in dom_document_parser()
1314 ctxt->myDoc = NULL; in dom_document_parser()
1317 xmlFreeParserCtxt(ctxt); in dom_document_parser()
1866 htmlParserCtxtPtr ctxt; in dom_load_html() local
1898 if (!ctxt) { in dom_load_html()
1905 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()
84 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()
196 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
198 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php()
[all …]
/PHP-8.1/ext/xsl/
H A Dxsltprocessor.c114 tctxt = xsltXPathGetTransformContext(ctxt); in xsl_ext_function_php()
136 obj = valuePop(ctxt); in xsl_ext_function_php()
155 obj = valuePop(ctxt); in xsl_ext_function_php()
230 obj = valuePop(ctxt); in xsl_ext_function_php()
304 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
310 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
403 xsltTransformContextPtr ctxt; in php_xsl_apply_stylesheet() local
459 ctxt = xsltNewTransformContext(style, doc); in php_xsl_apply_stylesheet()
460 ctxt->_private = (void *) intern; in php_xsl_apply_stylesheet()
466 ctxt->xinclude = Z_LVAL_P(doXInclude); in php_xsl_apply_stylesheet()
[all …]
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);
/PHP-8.1/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.1/ext/standard/tests/streams/
H A Dstream_context_tcp_nodelay.phpt11 $ctxt = stream_context_create([
18 "tcp://www.php.net:80", $errno, $errstr, 10, STREAM_CLIENT_CONNECT, $ctxt);
H A Dstream_context_tcp_nodelay_fopen.phpt11 $ctxt = stream_context_create([
20 $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);

Completed in 53 milliseconds