Searched refs:zfile (Results 1 – 4 of 4) sorted by relevance
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/ |
D | ZipFileTest.java | 42 private ZipFile zfile; field in ZipFileTest 48 zfile.close(); // about to reopen the same temp file in test_ConstructorLjava_io_FileI() 76 zfile.close(); // about to reopen the same temp file in test_ConstructorLjava_lang_String() 159 Enumeration<? extends ZipEntry> enumer = zfile.entries(); in test_entries() 167 Enumeration<? extends ZipEntry> enumeration = zfile.entries(); in test_entries() 168 zfile.close(); in test_entries() 182 zfile.entries(); in test_entries() 194 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); in test_getEntryLjava_lang_String() 199 zentry = zfile.getEntry("testdir1/File1.txt"); in test_getEntryLjava_lang_String() 201 zentry = zfile.getEntry("testdir1/"); in test_getEntryLjava_lang_String() [all …]
|
D | ZipEntryTest.java | 40 private ZipFile zfile; field in ZipEntryTest 52 zentry = zfile.getEntry("File3.txt"); in test_ConstructorLjava_lang_String() 55 zentry = zfile.getEntry(null); in test_ConstructorLjava_lang_String() 130 zentry = zfile.getEntry("File1.txt"); in test_getMethod() 133 zentry = zfile.getEntry("File3.txt"); in test_getMethod() 204 zentry = zfile.getEntry("File1.txt"); in test_setCommentLjava_lang_String() 278 zentry = zfile.getEntry("File1.txt"); in test_setExtra$B() 318 zentry = zfile.getEntry("File3.txt"); in test_setMethodI() 504 zfile = new ZipFile(f); in setUp() 505 zentry = zfile.getEntry("File1.txt"); in setUp() [all …]
|
/libcore/luni/src/test/java/libcore/java/util/zip/ |
D | OldZipFileTest.java | 42 zfile.close(); in test_size() 44 zfile.size(); in test_size() 51 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); in test_getEntryLjava_lang_String_AndroidOnly() 56 zentry = zfile.getEntry("testdir1"); in test_getEntryLjava_lang_String_AndroidOnly() 58 in = zfile.getInputStream(zentry); in test_getEntryLjava_lang_String_AndroidOnly() 74 private ZipFile zfile; field in OldZipFileTest 108 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt"); in test_getEntryLjava_lang_String_Ex() 111 zfile.close(); in test_getEntryLjava_lang_String_Ex() 113 zfile.getEntry("File2.txt"); in test_getEntryLjava_lang_String_Ex() 129 zentry = zfile.getEntry("File2.txt"); in test_getInputStreamLjava_util_zip_ZipEntry() [all …]
|
/libcore/ojluni/src/main/native/ |
D | ZipFile.c | 138 ZipFile_getTotal(JNIEnv *env, jclass cls, jlong zfile) in ZipFile_getTotal() argument 140 jzfile *zip = jlong_to_ptr(zfile); in ZipFile_getTotal() 146 ZipFile_startsWithLOC(JNIEnv *env, jclass cls, jlong zfile) in ZipFile_startsWithLOC() argument 148 jzfile *zip = jlong_to_ptr(zfile); in ZipFile_startsWithLOC() 154 ZipFile_close(JNIEnv *env, jclass cls, jlong zfile) in ZipFile_close() argument 156 ZIP_Close(jlong_to_ptr(zfile)); in ZipFile_close() 160 ZipFile_getFileDescriptor(JNIEnv *env, jclass cls, jlong zfile) { in ZipFile_getFileDescriptor() argument 161 jzfile *zip = jlong_to_ptr(zfile); in ZipFile_getFileDescriptor() 166 ZipFile_getEntry(JNIEnv *env, jclass cls, jlong zfile, in ZipFile_getEntry() argument 170 jzfile *zip = jlong_to_ptr(zfile); in ZipFile_getEntry() [all …]
|