Lines Matching full:storagename
301 String8 storageName(group->getPath());
302 storageName.convertToResPath();
320 int fileNameLen = storageName.length();
323 && (0 == strcmp(storageName.string() + (fileNameLen - excludeExtensionLen),
325 fprintf(stderr, "warning: '%s' not added to Zip\n", storageName.string());
329 if (strcasecmp(storageName.getPathExtension().string(), ".gz") == 0) {
331 storageName = storageName.getBasePath();
335 entry = zip->getEntryByName(storageName.string());
355 printf(" (removing old '%s')\n", storageName.string());
362 printf(" (not updating '%s')\n", storageName.string());
377 result = zip->addGzip(file->getSourceFile().string(), storageName.string(), &entry);
381 if (!okayToCompress(bundle, storageName)) {
384 result = zip->add(file->getSourceFile().string(), storageName.string(), compressionMethod,
387 result = zip->add(file->getData(), file->getSize(), storageName.string(),
392 printf(" '%s'%s", storageName.string(), fromGzip ? " (from .gz)" : "");
463 const char* storageName = entry->getFileName();
464 if (endsWith(storageName, ".class")) {
470 storageName);
473 out->add(data, size, storageName, compressionMethod, NULL);