Home
last modified time | relevance | path

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

/frameworks/base/libs/androidfw/include/androidfw/
DAssetManager.h216 class SharedZip;
229 sp<SharedZip> zip;
261 class SharedZip : public RefBase {
263 static sp<SharedZip> get(const String8& path, bool createIfNotPresent = true);
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;
[all …]
/frameworks/base/libs/androidfw/
DAssetManager.cpp878 ap.zip = SharedZip::create(ap.rawFd, ap.path); in getZipFileLocked()
1420 Mutex AssetManager::SharedZip::gLock;
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()
1457 sp<SharedZip> zip = gOpen.valueFor(path).promote(); in get()
1464 zip = new SharedZip(path, modWhen); in get()
1469 sp<AssetManager::SharedZip> AssetManager::SharedZip::create(int fd, const String8& path) in create()
1471 return new SharedZip(fd, path); in create()
[all …]