HomeSort by relevance Sort by last modified time
    Searched full:zfile (Results 1 - 25 of 66) sorted by null

1 2 3

  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipFileTest.java 37 private ZipFile zfile; field in class:ZipFileTest
43 zfile.close(); // about to reopen the same temp file
71 zfile.close(); // about to reopen the same temp file
154 Enumeration<? extends ZipEntry> enumer = zfile.entries();
162 Enumeration<? extends ZipEntry> enumeration = zfile.entries();
163 zfile.close();
177 zfile.entries();
189 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
194 zentry = zfile.getEntry("testdir1/File1.txt");
196 zentry = zfile.getEntry("testdir1/")
    [all...]
ZipEntryTest.java 32 private ZipFile zfile; field in class:ZipEntryTest
44 zentry = zfile.getEntry("File3.txt");
47 zentry = zfile.getEntry(null);
122 zentry = zfile.getEntry("File1.txt");
125 zentry = zfile.getEntry("File3.txt");
175 zentry = zfile.getEntry("File1.txt");
249 zentry = zfile.getEntry("File1.txt");
289 zentry = zfile.getEntry("File3.txt");
434 zfile = new ZipFile(f);
435 zentry = zfile.getEntry("File1.txt")
    [all...]
  /external/lzma/C/Util/Lzma/
makefile.gcc 13 7zFile.o \
37 7zFile.o: ../../7zFile.c
38 $(CXX) $(CFLAGS) ../../7zFile.c
makefile 15 $O\7zFile.obj \
LzmaUtil.dsp 89 SOURCE=..\..\7zFile.c
93 SOURCE=..\..\7zFile.h
LzmaUtil.c 11 #include "../../7zFile.h"
  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipFileTest.java 42 zfile.close();
44 zfile.size();
51 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
56 zentry = zfile.getEntry("testdir1");
58 in = zfile.getInputStream(zentry);
74 private ZipFile zfile; field in class:OldZipFileTest
108 java.util.zip.ZipEntry zentry = zfile.getEntry("File1.txt");
111 zfile.close();
113 zfile.getEntry("File2.txt");
129 zentry = zfile.getEntry("File2.txt")
    [all...]
  /libcore/ojluni/src/main/native/
java_util_zip_ZipFile.c 104 ZFILE zfd = 0;
138 ZipFile_getTotal(JNIEnv *env, jclass cls, jlong zfile)
140 jzfile *zip = jlong_to_ptr(zfile);
146 ZipFile_startsWithLOC(JNIEnv *env, jclass cls, jlong zfile)
148 jzfile *zip = jlong_to_ptr(zfile);
154 ZipFile_close(JNIEnv *env, jclass cls, jlong zfile)
156 ZIP_Close(jlong_to_ptr(zfile));
160 ZipFile_getFileDescriptor(JNIEnv *env, jclass cls, jlong zfile) {
161 jzfile *zip = jlong_to_ptr(zfile);
166 ZipFile_getEntry(JNIEnv *env, jclass cls, jlong zfile,
358 jlong zfile = (*env)->GetLongField(env, obj, jzfileID); local
    [all...]
zip_util.h 190 * Use ZFILE to represent access to a file in a platform-indepenent
194 #define ZFILE jlong
196 #define ZFILE int
220 ZFILE zfd; /* open file descriptor */
263 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified);
266 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified, jboolean usemmap);
zip_util.c 88 * Opens the named file for reading, returning a ZFILE.
96 static ZFILE
138 ZFILE_Close(ZFILE zfd) {
147 ZFILE_read(ZFILE zfd, char *buf, jint nbytes, jlong offset) {
192 readFullyAt(ZFILE zfd, void *buf, jlong len, jlong offset) {
301 const ZFILE zfd = zip->zfd;
780 ZFILE zfd = ZFILE_Open(name, mode);
840 ZIP_Put_In_Cache(const char *name, ZFILE zfd, char **pmsg, jlong lastModified)
846 ZIP_Put_In_Cache0(const char *name, ZFILE zfd, char **pmsg, jlong lastModified,
971 ZFILE zfd = zip->zfd
    [all...]
  /external/lzma/C/
Android.bp 20 "7zFile.c",
7zFile.h 1 /* 7zFile.h -- File IO
Android.mk 13 7zFile.c \
7zFile.c 1 /* 7zFile.c -- File IO
6 #include "7zFile.h"
  /external/lzma/C/Util/7z/
makefile.gcc 7 OBJS = 7zMain.o 7zAlloc.o 7zArcIn.o 7zBuf.o 7zBuf2.o 7zCrc.o 7zCrcOpt.o 7zDec.o CpuArch.o LzmaDec.o Lzma2Dec.o Bra.o Bra86.o Bcj2.o Ppmd7.o Ppmd7Dec.o 7zFile.o 7zStream.o
62 7zFile.o: ../../7zFile.c
63 $(CXX) $(CFLAGS) ../../7zFile.c
makefile 11 $O\7zFile.obj \
7z.dsp 132 SOURCE=..\..\7zFile.c
136 SOURCE=..\..\7zFile.h
  /external/lzma/C/Util/SfxSetup/
makefile 10 $O\7zFile.obj \
makefile_con 11 $O\7zFile.obj \
SfxSetup.dsp 134 SOURCE=..\..\7zFile.c
138 SOURCE=..\..\7zFile.h
  /external/zlib/src/contrib/pascal/
example.pas 87 zfile: gzFile;
92 zfile := gzopen(fname, 'wb');
93 if zfile = NIL then
98 gzputc(zfile, 'h');
99 if gzputs(zfile, 'ello') <> 4 then
101 WriteLn('gzputs err: ', gzerror(zfile, err));
105 if gzprintf(zfile, ', %s!', 'hello') <> 8 then
107 WriteLn('gzprintf err: ', gzerror(zfile, err));
111 if gzputs(zfile, ', hello!') <> 8 then
113 WriteLn('gzputs err: ', gzerror(zfile, err))
    [all...]
  /external/sqlite/dist/orig/
shell.c     [all...]
  /external/sqlite/dist/
shell.c     [all...]
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.0.0/
builder-2.0.0-sources.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/builder/2.0.0-alpha5/
builder-2.0.0-alpha5-sources.jar 

Completed in 320 milliseconds

1 2 3