Home
last modified time | relevance | path

Searched refs:ZipFileCollection (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/aapt2/io/
DZipArchive.cpp59 ZipFileCollectionIterator::ZipFileCollectionIterator(ZipFileCollection* collection) : in ZipFileCollectionIterator()
73 ZipFileCollection::ZipFileCollection() : mHandle(nullptr) { in ZipFileCollection() function in aapt::io::ZipFileCollection
76 std::unique_ptr<ZipFileCollection> ZipFileCollection::create(const StringPiece& path, in create()
80 std::unique_ptr<ZipFileCollection> collection = std::unique_ptr<ZipFileCollection>( in create()
81 new ZipFileCollection()); in create()
123 IFile* ZipFileCollection::findFile(const StringPiece& path) { in findFile()
131 std::unique_ptr<IFileCollectionIterator> ZipFileCollection::iterator() { in iterator()
135 ZipFileCollection::~ZipFileCollection() { in ~ZipFileCollection()
DZipArchive.h46 class ZipFileCollection; variable
50 ZipFileCollectionIterator(ZipFileCollection* collection);
62 class ZipFileCollection : public IFileCollection {
64 static std::unique_ptr<ZipFileCollection> create(const StringPiece& path,
70 ~ZipFileCollection() override;
74 ZipFileCollection();
/frameworks/base/tools/aapt2/dump/
DDump.cpp60 std::unique_ptr<io::ZipFileCollection> zip = io::ZipFileCollection::create(filePath, &err); in tryDumpFile()
/frameworks/base/tools/aapt2/link/
DLink.cpp838 std::unique_ptr<io::ZipFileCollection> collection = io::ZipFileCollection::create( in loadStaticLibrary()
863 std::unique_ptr<io::ZipFileCollection> collection = in mergeStaticLibrary()
864 io::ZipFileCollection::create(input, &errorStr); in mergeStaticLibrary()
1003 std::unique_ptr<io::ZipFileCollection> collection = in mergeArchive()
1004 io::ZipFileCollection::create(input, &errorStr); in mergeArchive()
/frameworks/base/tools/aapt2/diff/
DDiff.cpp91 std::unique_ptr<io::ZipFileCollection> apk = io::ZipFileCollection::create(path, &error); in loadApkFromPath()