pZip_filename    7538 src/punutil/miniz.c     mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags)
pZip_filename    7540 src/punutil/miniz.c         return mz_zip_add_mem_to_archive_file_in_place_v2(pZip_filename, pArchive_name, pBuf, buf_size, pComment, comment_size, level_and_flags, NULL);
pZip_filename    7543 src/punutil/miniz.c     mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr)
pZip_filename    7554 src/punutil/miniz.c         if ((!pZip_filename) || (!pArchive_name) || ((buf_size) && (!pBuf)) || ((comment_size) && (!pComment)) || ((level_and_flags & 0xF) > MZ_UBER_COMPRESSION))
pZip_filename    7570 src/punutil/miniz.c         if (MZ_FILE_STAT(pZip_filename, &file_stat) != 0)
pZip_filename    7573 src/punutil/miniz.c             if (!mz_zip_writer_init_file_v2(&zip_archive, pZip_filename, 0, level_and_flags))
pZip_filename    7585 src/punutil/miniz.c             if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY | MZ_ZIP_FLAG_READ_ALLOW_WRITING, 0, 0))
pZip_filename    7592 src/punutil/miniz.c             if (!mz_zip_writer_init_from_reader_v2(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_READ_ALLOW_WRITING))
pZip_filename    7626 src/punutil/miniz.c             int ignoredStatus = MZ_DELETE_FILE(pZip_filename);
pZip_filename    7636 src/punutil/miniz.c     void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr)
pZip_filename    7645 src/punutil/miniz.c         if ((!pZip_filename) || (!pArchive_name))
pZip_filename    7654 src/punutil/miniz.c         if (!mz_zip_reader_init_file_v2(&zip_archive, pZip_filename, flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_DIRECTORY, 0, 0))
pZip_filename    7675 src/punutil/miniz.c     void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags)
pZip_filename    7677 src/punutil/miniz.c         return mz_zip_extract_archive_file_to_heap_v2(pZip_filename, pArchive_name, NULL, pSize, flags, NULL);
pZip_filename    1489 src/punutil/miniz.h     MINIZ_EXPORT mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags);
pZip_filename    1490 src/punutil/miniz.h     MINIZ_EXPORT mz_bool mz_zip_add_mem_to_archive_file_in_place_v2(const char *pZip_filename, const char *pArchive_name, const void *pBuf, size_t buf_size, const void *pComment, mz_uint16 comment_size, mz_uint level_and_flags, mz_zip_error *pErr);
pZip_filename    1496 src/punutil/miniz.h     MINIZ_EXPORT void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, size_t *pSize, mz_uint flags);
pZip_filename    1497 src/punutil/miniz.h     MINIZ_EXPORT void *mz_zip_extract_archive_file_to_heap_v2(const char *pZip_filename, const char *pArchive_name, const char *pComment, size_t *pSize, mz_uint flags, mz_zip_error *pErr);