Searched refs:SharedZip (Results 1 – 1 of 1) sorted by relevance
1471 static class SharedZip /*: public RefBase */ { class in CppAssetManager1483 final static Map<String8, WeakReference<SharedZip>> gOpen = new HashMap<>();1485 public SharedZip(String path, long modWhen) { in SharedZip() method in CppAssetManager.SharedZip1501 static SharedZip get(final String8 path) { in get()1505 static SharedZip get(final String8 path, boolean createIfNotPresent) { in get()1508 WeakReference<SharedZip> ref = gOpen.get(path); in get()1509 SharedZip zip = ref == null ? null : ref.get(); in get()1516 zip = new SharedZip(path.string(), modWhen); in get()1618 final List<SharedZip> mZipFile = new ArrayList<>();1651 SharedZip zip = mZipFile.get(idx); in getZip()[all …]