Home | History | Annotate | Download | only in androidfw

Lines Matching defs:ze

108     const ZipEntry& ze = zipEntry->entry;
111 *pMethod = ze.method;
114 *pUncompLen = ze.uncompressed_length;
117 *pCompLen = ze.compressed_length;
120 *pOffset = ze.offset;
123 *pModWhen = ze.mod_time;
126 *pCrc32 = ze.crc32;
134 _ZipEntryRO* ze = new _ZipEntryRO;
135 int32_t error = StartIteration(mHandle, &(ze->cookie), NULL /* prefix */);
138 delete ze;
142 *cookie = ze;
148 _ZipEntryRO* ze = reinterpret_cast<_ZipEntryRO*>(cookie);
149 int32_t error = Next(ze->cookie, &(ze->entry), &(ze->name));
157 return &(ze->entry);
196 const ZipEntry& ze = zipEntry->entry;
200 if (ze.method == kCompressStored) {
201 actualLen = ze.uncompressed_length;
203 actualLen = ze.compressed_length;
207 if (!newMap->create(mFileName, fd, ze.offset, actualLen, true)) {