Home
last modified time | relevance | path

Searched refs:valid_file (Results 1 – 3 of 3) sorted by relevance

/PHP-8.0/ext/xmlreader/
H A Dphp_xmlreader.c261 char *valid_file = NULL; in _xmlreader_get_relaxNG() local
268 valid_file = _xmlreader_get_valid_file_path(source, resolved_path, MAXPATHLEN ); in _xmlreader_get_relaxNG()
269 if (!valid_file) { in _xmlreader_get_relaxNG()
272 parser = xmlRelaxNGNewParserCtxt(valid_file); in _xmlreader_get_relaxNG()
845 char *source, *valid_file = NULL; in PHP_METHOD() local
874 valid_file = _xmlreader_get_valid_file_path(source, resolved_path, MAXPATHLEN ); in PHP_METHOD()
876 if (valid_file) { in PHP_METHOD()
878 reader = xmlReaderForFile(valid_file, encoding, options); in PHP_METHOD()
/PHP-8.0/ext/xmlwriter/
H A Dphp_xmlwriter.c881 char *valid_file = NULL; in PHP_FUNCTION() local
903 valid_file = _xmlwriter_get_valid_file_path(source, resolved_path, MAXPATHLEN); in PHP_FUNCTION()
904 if (!valid_file) { in PHP_FUNCTION()
909 ptr = xmlNewTextWriterFilename(valid_file, 0); in PHP_FUNCTION()
/PHP-8.0/ext/dom/
H A Ddocument.c1617 char *source = NULL, *valid_file = NULL; in _dom_document_schema_validate() local
1648 valid_file = _dom_get_valid_file_path(source, resolved_path, MAXPATHLEN); in _dom_document_schema_validate()
1649 if (!valid_file) { in _dom_document_schema_validate()
1654 parser = xmlSchemaNewParserCtxt(valid_file); in _dom_document_schema_validate()
1727 char *source = NULL, *valid_file = NULL; in _dom_document_relaxNG_validate() local
1753 valid_file = _dom_get_valid_file_path(source, resolved_path, MAXPATHLEN); in _dom_document_relaxNG_validate()
1754 if (!valid_file) { in _dom_document_relaxNG_validate()
1758 parser = xmlRelaxNGNewParserCtxt(valid_file); in _dom_document_relaxNG_validate()

Completed in 23 milliseconds