Home
last modified time | relevance | path

Searched refs:storageName (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/aapt/
DPackage.cpp301 String8 storageName(group->getPath()); in processFile() local
302 storageName.convertToResPath(); in processFile()
320 int fileNameLen = storageName.length(); in processFile()
323 && (0 == strcmp(storageName.string() + (fileNameLen - excludeExtensionLen), in processFile()
325 fprintf(stderr, "warning: '%s' not added to Zip\n", storageName.string()); in processFile()
329 if (strcasecmp(storageName.getPathExtension().string(), ".gz") == 0) { in processFile()
331 storageName = storageName.getBasePath(); in processFile()
335 entry = zip->getEntryByName(storageName.string()); in processFile()
355 printf(" (removing old '%s')\n", storageName.string()); in processFile()
362 printf(" (not updating '%s')\n", storageName.string()); in processFile()
[all …]
DZipFile.h85 status_t add(const char* fileName, const char* storageName, in add() argument
88 return addCommon(fileName, NULL, 0, storageName, in add()
98 status_t addGzip(const char* fileName, const char* storageName, in addGzip() argument
101 return addCommon(fileName, NULL, 0, storageName, in addGzip()
111 status_t add(const void* data, size_t size, const char* storageName, in add() argument
114 return addCommon(NULL, data, size, storageName, in add()
225 const char* storageName, int sourceType, int compressionMethod,
DZipFile.cpp359 const char* storageName, int sourceType, int compressionMethod, in addCommon() argument
380 if (getEntryByName(storageName) != NULL) in addCommon()
395 pEntry->initNew(storageName, NULL); in addCommon()
DCommand.cpp1790 String8 storageName = String8(fileName).getPathLeaf(); in doAdd() local
1791 printf(" '%s' as '%s'...\n", fileName, storageName.string()); in doAdd()
1792 result = zip->add(fileName, storageName.string(), in doAdd()