Searched defs:archive (Results 1 - 2 of 2) sorted by path

/frameworks/compile/mclinker/include/mcld/LD/
H A DGroupReader.h48 /// of the archive node
51 : archive(pArchive), input(pIterator) {}
52 Archive& archive; member in struct:mcld::GroupReader::ArchiveListEntry
/frameworks/multidex/library/src/android/support/multidex/
H A DMultiDexExtractor.java199 * Compare current archive and crc with values stored in {@link SharedPreferences}. Should be
202 private static boolean isModified(Context context, File archive, long currentCrc) { argument
204 return (prefs.getLong(KEY_TIME_STAMP, NO_VALUE) != getTimeStamp(archive))
208 private static long getTimeStamp(File archive) { argument
209 long timeStamp = archive.lastModified();
218 private static long getZipCrc(File archive) throws IOException { argument
219 long computedValue = ZipUtil.getZipCrc(archive);

Completed in 194 milliseconds