Home
last modified time | relevance | path

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

/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
DCppAssetManager.java1471 static class SharedZip /*: public RefBase */ { class in CppAssetManager
1483 final static Map<String8, WeakReference<SharedZip>> gOpen = new HashMap<>();
1485 public SharedZip(String path, long modWhen) { in SharedZip() method in CppAssetManager.SharedZip
1501 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 …]