Lines Matching refs:pZip_filename

7289 mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_nam…  in mz_zip_add_mem_to_archive_file_in_place()  argument
7291 …return mz_zip_add_mem_to_archive_file_in_place_v2(pZip_filename, pArchive_name, pBuf, buf_size, pC… in mz_zip_add_mem_to_archive_file_in_place()
7294 mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_… in mz_zip_add_mem_to_archive_file_in_place_v2() argument
7305 …if ((!pZip_filename) || (!pArchive_name) || ((buf_size) && (!pBuf)) || ((comment_size) && (!pComme… in mz_zip_add_mem_to_archive_file_in_place_v2()
7321 if (MZ_FILE_STAT(pZip_filename, &file_stat) != 0) in mz_zip_add_mem_to_archive_file_in_place_v2()
7324 if (!mz_zip_writer_init_file_v2(&zip_archive, pZip_filename, 0, level_and_flags)) in mz_zip_add_mem_to_archive_file_in_place_v2()
7336 …if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_DO_NOT_… in mz_zip_add_mem_to_archive_file_in_place_v2()
7343 if (!mz_zip_writer_init_from_reader_v2(&zip_archive, pZip_filename, level_and_flags)) in mz_zip_add_mem_to_archive_file_in_place_v2()
7377 int ignoredStatus = MZ_DELETE_FILE(pZip_filename); in mz_zip_add_mem_to_archive_file_in_place_v2()
7387 void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, … in mz_zip_extract_archive_file_to_heap_v2() argument
7396 if ((!pZip_filename) || (!pArchive_name)) in mz_zip_extract_archive_file_to_heap_v2()
7405 …if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTR… in mz_zip_extract_archive_file_to_heap_v2()
7426 void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, siz… in mz_zip_extract_archive_file_to_heap() argument
7428 …return mz_zip_extract_archive_file_to_heap_v2(pZip_filename, pArchive_name, NULL, pSize, flags, NU… in mz_zip_extract_archive_file_to_heap()