Lines Matching refs:fullpath
132 char *fullpath; in php_zip_extract_file() local
206 len = spprintf(&fullpath, 0, "%s/%s", file_dirname_fullpath, ZSTR_VAL(file_basename)); in php_zip_extract_file()
224 if (ZIP_OPENBASEDIR_CHECKPATH(fullpath)) { in php_zip_extract_file()
225 efree(fullpath); in php_zip_extract_file()
238 stream = php_stream_open_wrapper(fullpath, "w+b", REPORT_ERRORS, NULL); in php_zip_extract_file()
256 …stream->wrapper->wops->stream_metadata(stream->wrapper, fullpath, PHP_STREAM_META_TOUCH, &ut, NULL… in php_zip_extract_file()
263 efree(fullpath); in php_zip_extract_file()
761 char fullpath[MAXPATHLEN]; in php_zip_pcre() local
791 snprintf(fullpath, MAXPATHLEN, "%s%c%s", path, DEFAULT_SLASH, ZSTR_VAL(namelist[i])); in php_zip_pcre()
793 if (0 != VCWD_STAT(fullpath, &s)) { in php_zip_pcre()
794 php_error_docref(NULL, E_WARNING, "Cannot read <%s>", fullpath); in php_zip_pcre()
804 add_next_index_string(return_value, fullpath); in php_zip_pcre()