Home | History | Annotate | Download | only in minizip

Lines Matching refs:uf

234 int do_list(uf)
235 unzFile uf;
241 err = unzGetGlobalInfo64(uf,&gi);
253 err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
299 err = unzGoToNextFile(uf);
312 int do_extract_currentfile(uf,popt_extract_without_path,popt_overwrite,password)
313 unzFile uf;
328 err = unzGetCurrentFileInfo64(uf,&file_info,filename_inzip,sizeof(filename_inzip),NULL,0,NULL,0);
370 err = unzOpenCurrentFilePassword(uf,password);
435 err = unzReadCurrentFile(uf,buf,size_buf);
460 err = unzCloseCurrentFile (uf);
467 unzCloseCurrentFile(uf); /* don't lose the error */
475 int do_extract(uf,opt_extract_without_path,opt_overwrite,password)
476 unzFile uf;
486 err = unzGetGlobalInfo64(uf,&gi);
492 if (do_extract_currentfile(uf,&opt_extract_without_path,
499 err = unzGoToNextFile(uf);
511 int do_extract_onefile(uf,filename,opt_extract_without_path,opt_overwrite,password)
512 unzFile uf;
519 if (unzLocateFile(uf,filename,CASESENSITIVITY)!=UNZ_OK)
525 if (do_extract_currentfile(uf,&opt_extract_without_path,
550 unzFile uf=NULL;
615 uf = unzOpen2_64(zipfilename,&ffunc);
617 uf = unzOpen64(zipfilename);
619 if (uf==NULL)
623 uf = unzOpen2_64(filename_try,&ffunc);
625 uf = unzOpen64(filename_try);
630 if (uf==NULL)
638 ret_value = do_list(uf);
652 ret_value = do_extract(uf, opt_do_extract_withoutpath, opt_overwrite, password);
654 ret_value = do_extract_onefile(uf, filename_to_extract, opt_do_extract_withoutpath, opt_overwrite, password);
657 unzClose(uf);