Home
last modified time | relevance | path

Searched refs:xzFile (Results 1 – 3 of 3) sorted by relevance

/external/libxml2/
Dxzlib.h12 typedef void *xzFile; /* opaque lzma file descriptor */ typedef
14 xzFile __libxml2_xzopen(const char *path, const char *mode);
15 xzFile __libxml2_xzdopen(int fd, const char *mode);
16 int __libxml2_xzread(xzFile file, void *buf, unsigned len);
17 int __libxml2_xzclose(xzFile file);
18 int __libxml2_xzcompressed(xzFile f);
Dxzlib.c138 static xzFile
184 return (xzFile) state; in xz_open()
188 xz_compressed(xzFile f) { in xz_compressed()
207 xzFile
214 __libxml2_xzcompressed(xzFile f) { in __libxml2_xzcompressed()
218 xzFile
222 xzFile xz; in __libxml2_xzdopen()
698 __libxml2_xzread(xzFile file, void *buf, unsigned len) in __libxml2_xzread()
787 __libxml2_xzclose(xzFile file) in __libxml2_xzclose()
DxmlIO.c1305 xzFile fd; in xmlXzfileOpen_real()
1371 ret = __libxml2_xzread((xzFile) context, &buffer[0], len); in xmlXzfileRead()
1386 ret = (__libxml2_xzclose((xzFile) context) == LZMA_OK ) ? 0 : -1; in xmlXzfileClose()