Home
last modified time | relevance | path

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

/frameworks/base/include/androidfw/
DAssetManager.h288 class SharedZip : public RefBase {
290 static sp<SharedZip> get(const String8& path, bool createIfNotPresent = true);
306 ~SharedZip();
309 SharedZip(const String8& path, time_t modWhen);
310 SharedZip(); // <-- not implemented
322 static DefaultKeyedVector<String8, wp<SharedZip> > gOpen;
362 mutable Vector<sp<SharedZip> > mZipFile;
/frameworks/base/libs/androidfw/
DAssetManager.cpp1860 Mutex AssetManager::SharedZip::gLock;
1861 DefaultKeyedVector<String8, wp<AssetManager::SharedZip> > AssetManager::SharedZip::gOpen;
1863 AssetManager::SharedZip::SharedZip(const String8& path, time_t modWhen) in SharedZip() function in AssetManager::SharedZip
1875 sp<AssetManager::SharedZip> AssetManager::SharedZip::get(const String8& path, in get()
1880 sp<SharedZip> zip = gOpen.valueFor(path).promote(); in get()
1887 zip = new SharedZip(path, modWhen); in get()
1893 ZipFileRO* AssetManager::SharedZip::getZip() in getZip()
1898 Asset* AssetManager::SharedZip::getResourceTableAsset() in getResourceTableAsset()
1904 Asset* AssetManager::SharedZip::setResourceTableAsset(Asset* asset) in setResourceTableAsset()
1920 ResTable* AssetManager::SharedZip::getResourceTable() in getResourceTable()
[all …]