Searched refs:pZip_filename (Results 1 – 2 of 2) sorted by relevance
/external/OpenCL-CTS/test_common/miniz/ |
D | miniz.h | 494 mz_bool mz_zip_add_mem_to_archive_file_in_place(const char *pZip_filename, const char *pArchive_nam… 498 void *mz_zip_extract_archive_file_to_heap(const char *pZip_filename, const char *pArchive_name, siz…
|
D | miniz.c | 4050 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 4058 …if ((!pZip_filename) || (!pArchive_name) || ((buf_size) && (!pBuf)) || ((comment_size) && (!pComme… in mz_zip_add_mem_to_archive_file_in_place() 4062 if (MZ_FILE_STAT(pZip_filename, &file_stat) != 0) in mz_zip_add_mem_to_archive_file_in_place() 4065 if (!mz_zip_writer_init_file(&zip_archive, pZip_filename, 0)) in mz_zip_add_mem_to_archive_file_in_place() 4072 …if (!mz_zip_reader_init_file(&zip_archive, pZip_filename, level_and_flags | MZ_ZIP_FLAG_DO_NOT_SOR… in mz_zip_add_mem_to_archive_file_in_place() 4074 if (!mz_zip_writer_init_from_reader(&zip_archive, pZip_filename)) in mz_zip_add_mem_to_archive_file_in_place() 4089 int ignoredStatus = MZ_DELETE_FILE(pZip_filename); in mz_zip_add_mem_to_archive_file_in_place() 4095 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 4104 if ((!pZip_filename) || (!pArchive_name)) in mz_zip_extract_archive_file_to_heap() 4108 …if (!mz_zip_reader_init_file(&zip_archive, pZip_filename, flags | MZ_ZIP_FLAG_DO_NOT_SORT_CENTRAL_… in mz_zip_extract_archive_file_to_heap()
|