Home
last modified time | relevance | path

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

/frameworks/base/tools/aapt2/io/
DZipArchive.cpp87 ZipFileCollection* collection) in ZipFileCollectionIterator()
100 ZipFileCollection::ZipFileCollection() : handle_(nullptr) {} in ZipFileCollection() function in aapt::io::ZipFileCollection
102 std::unique_ptr<ZipFileCollection> ZipFileCollection::Create(StringPiece path, in Create()
107 std::unique_ptr<ZipFileCollection> collection = in Create()
108 std::unique_ptr<ZipFileCollection>(new ZipFileCollection()); in Create()
155 IFile* ZipFileCollection::FindFile(StringPiece path) { in FindFile()
163 std::unique_ptr<IFileCollectionIterator> ZipFileCollection::Iterator() { in Iterator()
167 char ZipFileCollection::GetDirSeparator() { in GetDirSeparator()
174 ZipFileCollection::~ZipFileCollection() { in ~ZipFileCollection()
DZipArchive.h49 class ZipFileCollection; variable
53 explicit ZipFileCollectionIterator(ZipFileCollection* collection);
63 class ZipFileCollection : public IFileCollection {
65 static std::unique_ptr<ZipFileCollection> Create(android::StringPiece path,
72 ~ZipFileCollection() override;
76 ZipFileCollection();
/frameworks/base/tools/aapt2/format/
DArchive_test.cpp97 std::unique_ptr<io::ZipFileCollection> zip = io::ZipFileCollection::Create(output_path, nullptr); in VerifyZipFile()
115 std::unique_ptr<io::ZipFileCollection> zip = io::ZipFileCollection::Create(output_path, nullptr); in VerifyZipFileTimestamps()
/frameworks/base/tools/aapt2/cmd/
DCompile_test.cpp133 std::unique_ptr<io::ZipFileCollection> zip = io::ZipFileCollection::Create(kOutputFlata, &err); in TEST_F()
162 std::unique_ptr<io::ZipFileCollection> zip = io::ZipFileCollection::Create(kOutputFlata, &err); in TEST_F()
DCompile.cpp808 file_collection = io::ZipFileCollection::Create(options_.res_zip.value(), &err); in Action()
DLink.cpp847 auto zip_collection = io::ZipFileCollection::Create(path, &error); in LoadSymbolsFromIncludePaths()
1544 std::unique_ptr<io::ZipFileCollection> collection = in MergeArchive()
1545 io::ZipFileCollection::Create(input, &error_str); in MergeArchive()
/frameworks/base/tools/aapt2/
DLoadedApk.cpp79 std::unique_ptr<io::ZipFileCollection> apk = io::ZipFileCollection::Create(path, &error); in LoadApkFromPath()