Lines Matching refs:resolved_path
405 char *resolved_path; in php_libxml_streams_IO_open_wrapper() local
419 resolved_path = xmlURIUnescapeString(filename, 0, NULL); in php_libxml_streams_IO_open_wrapper()
428 if (strncasecmp(resolved_path, "file:/", pre_len) == 0 in php_libxml_streams_IO_open_wrapper()
429 && '/' != resolved_path[pre_len]) { in php_libxml_streams_IO_open_wrapper()
430 xmlChar *tmp = xmlStrdup(resolved_path + pre_len); in php_libxml_streams_IO_open_wrapper()
431 xmlFree(resolved_path); in php_libxml_streams_IO_open_wrapper()
432 resolved_path = tmp; in php_libxml_streams_IO_open_wrapper()
437 resolved_path = (char *)filename; in php_libxml_streams_IO_open_wrapper()
444 if (resolved_path == NULL) { in php_libxml_streams_IO_open_wrapper()
454 wrapper = php_stream_locate_url_wrapper(resolved_path, &path_to_open, 0); in php_libxml_streams_IO_open_wrapper()
458 xmlFree(resolved_path); in php_libxml_streams_IO_open_wrapper()
472 xmlFree(resolved_path); in php_libxml_streams_IO_open_wrapper()