Home
last modified time | relevance | path

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

/frameworks/base/include/androidfw/
DAssetManager.h294 class SharedZip : public RefBase {
296 static sp<SharedZip> get(const String8& path, bool createIfNotPresent = true);
312 ~SharedZip();
315 SharedZip(const String8& path, time_t modWhen);
316 SharedZip(); // <-- not implemented
328 static DefaultKeyedVector<String8, wp<SharedZip> > gOpen;
368 mutable Vector<sp<SharedZip> > mZipFile;
/frameworks/base/libs/androidfw/
DAssetManager.cpp1853 Mutex AssetManager::SharedZip::gLock;
1854 DefaultKeyedVector<String8, wp<AssetManager::SharedZip> > AssetManager::SharedZip::gOpen;
1856 AssetManager::SharedZip::SharedZip(const String8& path, time_t modWhen) in SharedZip() function in AssetManager::SharedZip
1870 sp<AssetManager::SharedZip> AssetManager::SharedZip::get(const String8& path, in get()
1875 sp<SharedZip> zip = gOpen.valueFor(path).promote(); in get()
1882 zip = new SharedZip(path, modWhen); in get()
1888 ZipFileRO* AssetManager::SharedZip::getZip() in getZip()
1893 Asset* AssetManager::SharedZip::getResourceTableAsset() in getResourceTableAsset()
1899 Asset* AssetManager::SharedZip::setResourceTableAsset(Asset* asset) in setResourceTableAsset()
1915 ResTable* AssetManager::SharedZip::getResourceTable() in getResourceTable()
[all …]