// Detect early problems. if (optind == argc) {
LOG(ERROR) << "No file specified";
wantUsage = true;
} if (gOptions.checksumOnly && gOptions.ignoreBadChecksum) {
LOG(ERROR) << "Can't specify both -c and -i";
wantUsage = true;
} if (wantUsage) {
usage(); return2;
}
// Open alternative output file. if (gOptions.outputFileName) {
gOutFile = fopen(gOptions.outputFileName, "we"); if (!gOutFile) {
PLOG(ERROR) << "Can't open " << gOptions.outputFileName; return1;
}
}
// Process all files supplied on command line. int result = 0; while (optind < argc) {
result |= processFile(argv[optind++]);
} // while return result != 0 ? 1 : 0;
}
} // namespace art
int main(int argc, char** argv) { // Output all logging to stderr.
android::base::SetLogger(android::base::StderrLogger);
art::MemMap::Init();
return art::dexdumpDriver(argc, argv);
}
Messung V0.5 in Prozent
¤ Dauer der Verarbeitung: 0.11 Sekunden
(vorverarbeitet am 2026-06-29)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.