Searched refs:zipFileName (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/include/androidfw/
H A DZipFileRO.h80 static ZipFileRO* open(const char* zipFileName);
H A DAssetManager.h259 String8 createZipSourceNameLocked(const String8& zipFileName,
/frameworks/base/libs/androidfw/
H A DZipFileRO.cpp65 /* static */ ZipFileRO* ZipFileRO::open(const char* zipFileName) argument
68 const int32_t error = OpenArchive(zipFileName, &handle);
70 ALOGW("Error opening archive %s: %s", zipFileName, ErrorCodeString(error));
75 return new ZipFileRO(handle, strdup(zipFileName));
H A DAssetManager.cpp1045 String8 AssetManager::createZipSourceNameLocked(const String8& zipFileName, argument
1049 sourceName.append(zipFileName);
/frameworks/base/tools/aapt/
H A DZipFile.h66 status_t open(const char* zipFileName, int flags);
H A DCommand.cpp147 const char* zipFileName; local
153 zipFileName = bundle->getFileSpecEntry(0);
155 zip = openReadOnly(zipFileName);
163 printf("Archive: %s\n", zipFileName);
213 if (!assets.addAssetPath(String8(zipFileName), NULL)) {
2279 const char* zipFileName; local
2291 zipFileName = bundle->getFileSpecEntry(0);
2298 zip = openReadWrite(zipFileName, true);
2300 fprintf(stderr, "ERROR: failed opening/creating '%s' as Zip file\n", zipFileName);
2323 fprintf(stderr, "Unable to add '%s' to '%s'", bundle->getFileSpecEntry(i), zipFileName);
2350 const char* zipFileName; local
[all...]
H A DZipFile.cpp59 status_t ZipFile::open(const char* zipFileName, int flags) argument
78 newArchive = (access(zipFileName, F_OK) != 0);
81 ALOGD("File %s does not exist", zipFileName);
96 mZipFp = fopen(zipFileName, openflags);

Completed in 146 milliseconds