Lines Matching refs:URI
228 if (dict == NULL || !xmlDictOwns(dict, entity->URI)) { in php_libxml_node_free()
229 xmlFree((xmlChar *) entity->URI); in php_libxml_node_free()
503 php_libxml_input_buffer_create_filename(const char *URI, xmlCharEncoding enc) in php_libxml_input_buffer_create_filename() argument
512 if (URI == NULL) in php_libxml_input_buffer_create_filename()
515 context = php_libxml_streams_IO_open_read_wrapper(URI); in php_libxml_input_buffer_create_filename()
581 php_libxml_output_buffer_create_filename(const char *URI, in php_libxml_output_buffer_create_filename() argument
592 if (URI == NULL) in php_libxml_output_buffer_create_filename()
595 if (strstr(URI, "%00")) { in php_libxml_output_buffer_create_filename()
600 puri = xmlParseURI(URI); in php_libxml_output_buffer_create_filename()
603 unescaped = xmlURIUnescapeString(URI, 0, NULL); in php_libxml_output_buffer_create_filename()
614 context = php_libxml_streams_IO_open_write_wrapper(URI); in php_libxml_output_buffer_create_filename()