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

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipEntryTest.java 39 private ZipEntry zentry; field in class:ZipEntryTest
52 zentry = zfile.getEntry("File3.txt");
53 assertNotNull("Failed to create ZipEntry", zentry);
55 zentry = zfile.getEntry(null);
64 zentry = new ZipEntry(s.toString());
70 zentry = new ZipEntry(s.toString());
76 zentry = new ZipEntry(n);
99 assertTrue("Incorrect compressed size returned", zentry
108 assertEquals("Failed to get Crc", orgCrc, zentry.getCrc());
117 zentry.getExtra())
    [all...]
ZipFileTest.java 194 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); local
195 assertNotNull("Could not obtain ZipEntry", zentry);
199 zentry = zfile.getEntry("testdir1/File1.txt");
200 assertNotNull("Could not obtain ZipEntry: testdir1/File1.txt", zentry);
201 zentry = zfile.getEntry("testdir1/");
202 assertNotNull("Could not obtain ZipEntry: testdir1/", zentry);
203 in = zfile.getInputStream(zentry);
209 zentry = zfile.getEntry("testdir1/testdir1");
210 assertNotNull("Could not obtain ZipEntry: testdir1/testdir1", zentry);
211 in = zfile.getInputStream(zentry);
220 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); local
241 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); local
259 ZipEntry zentry = null; local
319 ZipEntry zentry = zfile.getEntry("File1.txt"); local
365 ZipEntry zentry = zfile.getEntry("File1.txt"); local
    [all...]
ZipInputStreamTest.java 41 private ZipEntry zentry; field in class:ZipInputStreamTest
86 zentry = zis.getNextEntry();
118 zentry = zis.getNextEntry();
159 zentry = zis.getNextEntry();
160 byte[] rbuf = new byte[(int) zentry.getSize()];
180 while ((zentry = zis.getNextEntry()) != null) {
181 zentry.getName();
190 zentry = zis.getNextEntry();
191 byte[] rbuf = new byte[(int) zentry.getSize()];
196 zentry = zis.getNextEntry()
    [all...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 51 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); local
52 assertNotNull("Could not obtain ZipEntry", zentry);
56 zentry = zfile.getEntry("testdir1");
57 assertNotNull("Must be able to obtain ZipEntry: testdir1", zentry);
58 in = zfile.getInputStream(zentry);
108 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); local
109 assertNotNull("Could not obtain ZipEntry", zentry);
126 ZipEntry zentry = null; local
129 zentry = zfile.getEntry("File2.txt");
132 is = zfile.getInputStream(zentry);
    [all...]
  /system/extras/simpleperf/
read_apk.cpp 75 ZipEntry zentry; local
79 while ((zrc = Next(iteration_cookie, &zentry, &zname)) == 0) {
80 if (zentry.method == kCompressStored &&
81 file_offset >= static_cast<uint64_t>(zentry.offset) &&
82 file_offset < static_cast<uint64_t>(zentry.offset + zentry.uncompressed_length)) {
94 if (lseek(fhelper.fd(), zentry.offset, SEEK_SET) != zentry.offset) {
95 PLOG(ERROR) << "lseek() failed in " << apk_path << " offset " << zentry.offset;
109 return std::unique_ptr<EmbeddedElf>(new EmbeddedElf(apk_path, entry_name, zentry.offset
127 ZipEntry zentry; local
    [all...]
  /libcore/ojluni/src/main/native/
java_util_zip_ZipFile.c 195 jlong zentry)
198 jzentry *ze = jlong_to_ptr(zentry);
211 ZipFile_getEntryMethod(JNIEnv *env, jclass cls, jlong zentry)
213 jzentry *ze = jlong_to_ptr(zentry);
218 ZipFile_getEntryFlag(JNIEnv *env, jclass cls, jlong zentry)
220 jzentry *ze = jlong_to_ptr(zentry);
225 ZipFile_getEntryCSize(JNIEnv *env, jclass cls, jlong zentry)
227 jzentry *ze = jlong_to_ptr(zentry);
232 ZipFile_getEntrySize(JNIEnv *env, jclass cls, jlong zentry)
234 jzentry *ze = jlong_to_ptr(zentry);
    [all...]
  /system/core/libbacktrace/
BacktraceOffline.cpp 824 ZipEntry zentry; local
825 ret_code = FindEntry(handle, ZipString(elf_file.c_str()), &zentry);
831 if (zentry.method != kCompressStored || zentry.compressed_length != zentry.uncompressed_length) {
837 zentry.uncompressed_length,
838 zentry.offset);

Completed in 815 milliseconds