Home
last modified time | relevance | path

Searched refs:zipFileName (Results 1 – 5 of 5) sorted by relevance

/build/make/tools/ziptime/
DZipFile.cpp36 status_t ZipFile::rewrite(const char* zipFileName) in rewrite() argument
41 mZipFp = fopen(zipFileName, "r+b"); in rewrite()
43 LOG("fopen \"%s\" failed: %s\n", zipFileName, strerror(errno)); in rewrite()
DZipFile.h43 status_t rewrite(const char* zipFileName);
/build/soong/fuzz/
Dfuzz_common.go563 zipFileName := "fuzz-" + hostOrTarget + "-" + arch + ".zip"
565 zipFileName = "fuzz-rust-" + hostOrTarget + "-" + arch + ".zip"
568 zipFileName = "fuzz-java-" + hostOrTarget + "-" + arch + ".zip"
571 outputFile := android.PathForOutput(ctx, zipFileName)
/build/make/tools/zipalign/
DZipFile.h66 status_t open(const char* zipFileName, int flags);
DZipFile.cpp63 status_t ZipFile::open(const char* zipFileName, int flags) in open() argument
82 newArchive = (access(zipFileName, F_OK) != 0); in open()
85 ALOGD("File %s does not exist", zipFileName); in open()
100 mZipFp = fopen(zipFileName, openflags); in open()