HomeSort by relevance Sort by last modified time
    Searched defs:ZipEntryRO (Results 1 - 2 of 2) sorted by null

  /frameworks/base/include/androidfw/
ZipFileRO.h 49 * Trivial typedef to ensure that ZipEntryRO is not treated as a simple
52 typedef void* ZipEntryRO;
86 ZipEntryRO findEntryByName(const char* entryName) const;
100 ZipEntryRO nextEntry(void* cookie);
104 void releaseEntry(ZipEntryRO entry) const;
116 int getEntryFileName(ZipEntryRO entry, char* buffer, size_t bufLen) const;
127 bool getEntryInfo(ZipEntryRO entry, uint16_t* pMethod, uint32_t* pUncompLen,
137 FileMap* createEntryFileMap(ZipEntryRO entry) const;
148 bool uncompressEntry(ZipEntryRO entry, void* buffer, size_t size) const;
153 bool uncompressEntry(ZipEntryRO entry, int fd) const
    [all...]
  /external/libgdx/backends/gdx-backend-android/src/com/badlogic/gdx/backends/android/
ZipResourceFile.java 90 * The values we return for ZipEntryRO use 0 as an invalid value, so we want
97 static public final class ZipEntryRO {
98 public ZipEntryRO(final String zipFileName, final File file,
184 private HashMap<String, ZipEntryRO> mHashMap = new HashMap<String, ZipEntryRO>();
193 ZipEntryRO[] getEntriesAt(String path) {
194 Vector<ZipEntryRO> zev = new Vector<ZipEntryRO>();
195 Collection<ZipEntryRO> values = mHashMap.values();
199 for (ZipEntryRO ze : values)
    [all...]

Completed in 313 milliseconds