Lines Matching refs:resolved_path
305 char *resolved_path; in php_libxml_streams_IO_open_wrapper() local
315 resolved_path = xmlURIUnescapeString(filename, 0, NULL); in php_libxml_streams_IO_open_wrapper()
324 if (strncasecmp(resolved_path, "file:/", pre_len) == 0 in php_libxml_streams_IO_open_wrapper()
325 && '/' != resolved_path[pre_len]) { in php_libxml_streams_IO_open_wrapper()
326 xmlChar *tmp = xmlStrdup(resolved_path + pre_len); in php_libxml_streams_IO_open_wrapper()
327 xmlFree(resolved_path); in php_libxml_streams_IO_open_wrapper()
328 resolved_path = tmp; in php_libxml_streams_IO_open_wrapper()
333 resolved_path = (char *)filename; in php_libxml_streams_IO_open_wrapper()
340 if (resolved_path == NULL) { in php_libxml_streams_IO_open_wrapper()
350 wrapper = php_stream_locate_url_wrapper(resolved_path, &path_to_open, 0); in php_libxml_streams_IO_open_wrapper()
354 xmlFree(resolved_path); in php_libxml_streams_IO_open_wrapper()
364 xmlFree(resolved_path); in php_libxml_streams_IO_open_wrapper()