Home
last modified time | relevance | path

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

/system/core/libzipfile/
Dtest_zipfile.c15 zipfile_t zip; in main() local
47 zip = init_zipfile(buf, size); in main()
48 if (zip == NULL) { in main()
61 dump_zipfile(stdout, zip); in main()
64 entry = lookup_zipentry(zip, argv[3]); in main()
Dzipfile.c134 Zipfile* zip = (Zipfile*)file; in dump_zipfile() local
135 Zipentry* entry = zip->entries; in dump_zipfile()
138 fprintf(to, "entryCount=%d\n", zip->entryCount); in dump_zipfile()
139 for (i=0; i<zip->entryCount; i++) { in dump_zipfile()
152 Zipfile* zip = (Zipfile*)file; in iterate_zipfile() local
153 *cookie = zip->entries; in iterate_zipfile()
/system/core/fastboot/
Dfastboot.c369 void *unzip_file(zipfile_t zip, const char *name, unsigned *sz) in unzip_file() argument
375 entry = lookup_zipentry(zip, name); in unzip_file()
614 void do_update_signature(zipfile_t zip, char *fn) in do_update_signature() argument
618 data = unzip_file(zip, fn, &sz); in do_update_signature()
630 zipfile_t zip; in do_update() local
639 zip = init_zipfile(zdata, zsize); in do_update()
640 if(zip == 0) die("failed to access zipdata in '%s'"); in do_update()
642 data = unzip_file(zip, "android-info.txt", &sz); in do_update()
646 data = unzip_file(zip, "android-product.txt", &sz); in do_update()
659 data = unzip_file(zip, "boot.img", &sz); in do_update()
[all …]
/system/core/adb/
Dfile_sync_client.c315 zipfile_t zip; in sync_send() local
352 zip = init_zipfile(file_buffer, size); in sync_send()
353 if (zip == NULL) { in sync_send()
360 entry = lookup_zipentry(zip, "AndroidManifest.xml"); in sync_send()
361 release_zipfile(zip); in sync_send()
/system/extras/tests/sdcard/
Dplot_sdcard.py61 return str(zip(self.time, self.data))