Home | History | Annotate | Download | only in libdex

Lines Matching full:dex

30  * Extract "classes.dex" from archive file.
38 static const char* kFileToExtract = "classes.dex";
90 * Map the specified DEX file read-only (possibly after expanding it into a
96 * read-only copy of a DEX file that could be in a number of different states.
114 "ERROR: filename must end in .dex, .zip, .jar, or .apk\n");
120 if (strcasecmp(fileName + len -3, "dex") != 0) {
124 * "classes.dex" inside. We need to extract the compressed
128 sprintf(tempNameBuf, "/tmp/dex-temp-%d", getpid());
130 sprintf(tempNameBuf, "/sdcard/dex-temp-%d", getpid());
143 fprintf(stderr, "Not Zip, retrying as DEX\n");
147 fprintf(stderr, "Zip has no classes.dex\n");
154 * Pop open the (presumed) DEX file.