Home
last modified time | relevance | path

Searched refs:manifestEntry (Results 1 – 2 of 2) sorted by relevance

/frameworks/native/cmds/lshal/
DListCommand.cpp744 for (const TableEntry& manifestEntry : mManifestHalsTable) { in fetchLazyHals() local
745 if (manifestEntry.transport == vintf::Transport::HWBINDER) { in fetchLazyHals()
746 if (!hasHwbinderEntry(manifestEntry)) { in fetchLazyHals()
747 mLazyHalsTable.add(TableEntry(manifestEntry)); in fetchLazyHals()
751 if (manifestEntry.transport == vintf::Transport::PASSTHROUGH) { in fetchLazyHals()
752 if (!hasPassthroughEntry(manifestEntry)) { in fetchLazyHals()
753 mLazyHalsTable.add(TableEntry(manifestEntry)); in fetchLazyHals()
758 << manifestEntry.transport; in fetchLazyHals()
/frameworks/base/core/java/android/util/apk/
DApkSignatureVerifier.java375 final ZipEntry manifestEntry = jarFile.findEntry( in verifyV1Signature() local
377 if (manifestEntry == null) { in verifyV1Signature()
381 lastCerts = loadCertificates(jarFile, manifestEntry); in verifyV1Signature()