Home | History | Annotate | Download | only in aapt

Lines Matching defs:zip

1007         // place at root of zip.
1249 ZipFile* zip = new ZipFile;
1250 status_t err = zip->open(filename, ZipFile::kOpenReadOnly);
1252 fprintf(stderr, "error opening zip file %s\n", filename);
1254 delete zip;
1258 const int N = zip->getNumEntries();
1260 ZipEntry* entry = zip->getEntryByIndex(i);
1285 // use the one from the zip file if they both exist.
1305 void* data = zip->uncompress(entry);
1330 delete zip;