Home
last modified time | relevance | path

Searched refs:entryPath (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/cmds/idmap2/libidmap2/
DZipFile.cpp46 std::unique_ptr<const MemoryChunk> ZipFile::Uncompress(const std::string& entryPath) const { in Uncompress()
48 int32_t status = ::FindEntry(handle_, ::ZipString(entryPath.c_str()), &entry); in Uncompress()
60 Result<uint32_t> ZipFile::Crc(const std::string& entryPath) const { in Crc()
62 int32_t status = ::FindEntry(handle_, ::ZipString(entryPath.c_str()), &entry); in Crc()
64 return Error("failed to find zip entry %s", entryPath.c_str()); in Crc()
/frameworks/base/cmds/idmap2/include/idmap2/
DZipFile.h44 std::unique_ptr<const MemoryChunk> Uncompress(const std::string& entryPath) const;
45 Result<uint32_t> Crc(const std::string& entryPath) const;
/frameworks/multidex/library/src/androidx/multidex/
DMultiDex.java766 String entryPath = additionalEntry.getAbsolutePath(); in install() local
767 path.append(':').append(entryPath); in install()
769 extraPaths[index] = entryPath; in install()
772 extraDexs[index] = DexFile.loadDex(entryPath, entryPath + ".dex", 0); in install()