Home
last modified time | relevance | path

Searched refs:ctxt (Results 1 – 9 of 9) sorted by relevance

/PHP-8.3/ext/soap/
H A Dphp_xml.c91 if (ctxt) { in soap_xmlParseFile()
97 ctxt->keepBlanks = 0; in soap_xmlParseFile()
106 xmlParseDocument(ctxt); in soap_xmlParseFile()
108 if (ctxt->wellFormed) { in soap_xmlParseFile()
109 ret = ctxt->myDoc; in soap_xmlParseFile()
116 ctxt->myDoc = NULL; in soap_xmlParseFile()
143 if (ctxt) { in soap_xmlParseMemory()
157 xmlParseDocument(ctxt); in soap_xmlParseMemory()
159 if (ctxt->wellFormed) { in soap_xmlParseMemory()
160 ret = ctxt->myDoc; in soap_xmlParseMemory()
[all …]
/PHP-8.3/ext/libxml/
H A Dphp_libxml.h198 static zend_always_inline void php_libxml_sanitize_parse_ctxt_options(xmlParserCtxtPtr ctxt)
201 ctxt->loadsubset = 0;
202 ctxt->validate = 0;
203 ctxt->pedantic = 0;
204 ctxt->replaceEntities = 0;
205 ctxt->linenumbers = 0;
206 ctxt->keepBlanks = 1;
207 ctxt->options = 0;
/PHP-8.3/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()
242 obj = valuePop(ctxt); in xsl_ext_function_php()
309 xsl_ext_function_php(ctxt, nargs, 1); in xsl_ext_function_string_php()
315 xsl_ext_function_php(ctxt, nargs, 2); in xsl_ext_function_object_php()
410 xsltTransformContextPtr ctxt; in php_xsl_apply_stylesheet() local
466 ctxt = xsltNewTransformContext(style, doc); in php_xsl_apply_stylesheet()
467 ctxt->_private = (void *) intern; in php_xsl_apply_stylesheet()
473 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.3/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);
/PHP-8.3/ext/dom/
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()
140 obj = valuePop(ctxt); in dom_xpath_ext_function_php()
172 valuePush(ctxt, xmlXPathNewNodeSet(nodep)); in dom_xpath_ext_function_php()
174 valuePush(ctxt, xmlXPathNewBoolean(Z_TYPE(retval) == IS_TRUE)); in dom_xpath_ext_function_php()
180 valuePush(ctxt, xmlXPathNewString((xmlChar *) ZSTR_VAL(str))); in dom_xpath_ext_function_php()
199 static void dom_xpath_ext_function_string_php(xmlXPathParserContextPtr ctxt, int nargs) /* {{{ */ in dom_xpath_ext_function_string_php() argument
201 dom_xpath_ext_function_php(ctxt, nargs, 1); in dom_xpath_ext_function_string_php()
[all …]
H A Ddocument.c1295 if (ctxt == NULL) { in dom_document_parser()
1322 if (ctxt->sax != NULL) { in dom_document_parser()
1351 xmlParseDocument(ctxt); in dom_document_parser()
1354 ret = ctxt->myDoc; in dom_document_parser()
1364 xmlFreeDoc(ctxt->myDoc); in dom_document_parser()
1365 ctxt->myDoc = NULL; in dom_document_parser()
1368 xmlFreeParserCtxt(ctxt); in dom_document_parser()
1983 htmlParserCtxtPtr ctxt; in dom_load_html() local
2013 if (!ctxt) { in dom_load_html()
2020 if (ctxt->sax != NULL) { in dom_load_html()
[all …]

Completed in 20 milliseconds