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

  /frameworks/base/include/utils/
ZipFileRO.h 44 * Trivial typedef to ensure that ZipEntryRO is not treated as a simple
47 typedef void* ZipEntryRO;
91 ZipEntryRO findEntryByName(const char* fileName) const;
112 ZipEntryRO findEntryByIndex(int idx) const;
119 int getEntryFileName(ZipEntryRO entry, char* buffer, int bufLen) const;
130 bool getEntryInfo(ZipEntryRO entry, int* pMethod, size_t* pUncompLen,
139 FileMap* createEntryFileMap(ZipEntryRO entry) const;
150 bool uncompressEntry(ZipEntryRO entry, void* buffer) const;
155 bool uncompressEntry(ZipEntryRO entry, int fd) const;
203 /* convert a ZipEntryRO back to a hash table index *
    [all...]
AssetManager.h 242 const ZipEntryRO entry, AccessMode mode, const String8& entryName);
  /frameworks/base/libs/utils/
ZipFileCRO.cpp 41 bool ZipFileCRO_getEntryInfo(ZipFileCRO zipToken, ZipEntryRO entryToken,
45 ZipEntryRO entry = (ZipEntryRO)entryToken;
50 bool ZipFileCRO_uncompressEntry(ZipFileCRO zipToken, ZipEntryRO entryToken, int fd) {
52 ZipEntryRO entry = (ZipEntryRO)entryToken;
ZipFileRO.cpp 98 * The values we return for ZipEntryRO use 0 as an invalid value, so we
116 * Convert a ZipEntryRO to a hash table index, verifying that it's in a
119 int ZipFileRO::entryToIndex(const ZipEntryRO entry) const
123 LOGW("Invalid ZipEntryRO %p (%ld)\n", entry, ent);
417 ZipEntryRO ZipFileRO::findEntryByName(const char* fileName) const
436 return (ZipEntryRO)(long)(ent + kZipEntryAdj);
452 ZipEntryRO ZipFileRO::findEntryByIndex(int idx) const
462 return (ZipEntryRO) (ent + kZipEntryAdj);
475 bool ZipFileRO::getEntryInfo(ZipEntryRO entry, int* pMethod, size_t* pUncompLen,
622 int ZipFileRO::getEntryFileName(ZipEntryRO entry, char* buffer, int bufLen
    [all...]
AssetManager.cpp 557 ZipEntryRO entry;
711 ZipEntryRO entry;
827 const ZipEntryRO entry, AccessMode mode, const String8& entryName)
    [all...]
  /frameworks/base/cmds/bootanimation/
BootAnimation.cpp 349 ZipEntryRO desc = zip.findEntryByName("desc.txt");
391 ZipEntryRO entry = zip.findEntryByIndex(i);

Completed in 197 milliseconds