Searched refs:SharedZip (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/libs/androidfw/include/androidfw/ |
H A D | AssetManager.h | 216 class SharedZip; 229 sp<SharedZip> zip; 261 class SharedZip : public RefBase { 264 static sp<SharedZip> create(int fd, const String8& path); 280 ~SharedZip(); 283 SharedZip(const String8& path, time_t modWhen); 284 SharedZip(int fd, const String8& path); 285 SharedZip(); // <-- not implemented 297 static DefaultKeyedVector<String8, wp<SharedZip> > gOpen; 318 const sp<SharedZip> getSharedZip(const String8& path); [all …]
|
/aosp14/frameworks/base/libs/androidfw/ |
H A D | AssetManager.cpp | 1421 DefaultKeyedVector<String8, wp<AssetManager::SharedZip> > AssetManager::SharedZip::gOpen; 1423 AssetManager::SharedZip::SharedZip(const String8& path, time_t modWhen) in SharedZip() function in AssetManager::SharedZip 1437 AssetManager::SharedZip::SharedZip(int fd, const String8& path) in SharedZip() function in AssetManager::SharedZip 1452 sp<AssetManager::SharedZip> AssetManager::SharedZip::get(const String8& path, in get() 1469 sp<AssetManager::SharedZip> AssetManager::SharedZip::create(int fd, const String8& path) in create() 1471 return new SharedZip(fd, path); in create() 1541 AssetManager::SharedZip::~SharedZip() in ~SharedZip() 1595 zip = SharedZip::get(path); in getSharedZip() 1606 zip = SharedZip::get(path); in getZipResourceTableAsset() 1626 zip = SharedZip::get(path); in getZipResourceTable() [all …]
|