Lines Matching refs:fullpath
148 char *fullpath; in php_zip_extract_file() local
220 len = spprintf(&fullpath, 0, "%s/%s", file_dirname_fullpath, ZSTR_VAL(file_basename)); in php_zip_extract_file()
238 if (ZIP_OPENBASEDIR_CHECKPATH(fullpath)) { in php_zip_extract_file()
239 efree(fullpath); in php_zip_extract_file()
252 stream = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS, NULL); in php_zip_extract_file()
270 efree(fullpath); in php_zip_extract_file()
669 char fullpath[MAXPATHLEN]; in php_zip_pcre() local
687 snprintf(fullpath, MAXPATHLEN, "%s%c%s", path, DEFAULT_SLASH, ZSTR_VAL(namelist[i])); in php_zip_pcre()
689 if (0 != VCWD_STAT(fullpath, &s)) { in php_zip_pcre()
690 php_error_docref(NULL, E_WARNING, "Cannot read <%s>", fullpath); in php_zip_pcre()
707 add_next_index_string(return_value, fullpath); in php_zip_pcre()