Lines Matching refs:resolved_path
291 char resolved_path[MAXPATHLEN]; in php_zip_add_file() local
298 if (!expand_filepath(filename, resolved_path)) { in php_zip_add_file()
303 if (php_stream_stat_path_ex(resolved_path, PHP_STREAM_URL_STAT_QUIET, &ssb, NULL)) { in php_zip_add_file()
310 fd = fopen(resolved_path, "rb"); in php_zip_add_file()
317 zs = zip_source_file(obj->za, resolved_path, offset_start, offset_len); in php_zip_add_file()
1171 char resolved_path[MAXPATHLEN + 1]; in PHP_FUNCTION() local
1189 if(!expand_filepath(ZSTR_VAL(filename), resolved_path)) { in PHP_FUNCTION()
1196 rsrc_int->za = zip_open(resolved_path, 0, &err); in PHP_FUNCTION()
1450 char *resolved_path; local
1471 if (!(resolved_path = expand_filepath(ZSTR_VAL(filename), NULL))) {
1480 efree(resolved_path);
1499 if (VCWD_STAT(resolved_path, &st) == 0 && st.st_size == 0) {
1508 intern = zip_open(resolved_path, flags, &err);
1510 efree(resolved_path);
1513 ze_obj->filename = resolved_path;
1514 ze_obj->filename_len = strlen(resolved_path);