HomeSort by relevance Sort by last modified time
    Searched defs:zstream (Results 1 - 14 of 14) sorted by null

  /external/dropbear/
packet.c 368 z_streamp zstream; local
370 zstream = ses.keys->recv_zstream;
373 zstream->avail_in = len;
374 zstream->next_in = buf_getptr(buf, len);
379 zstream->avail_out = ret->size - ret->pos;
380 zstream->next_out = buf_getwriteptr(ret, zstream->avail_out);
382 result = inflate(zstream, Z_SYNC_FLUSH);
384 buf_setlen(ret, ret->size - zstream->avail_out);
391 if (zstream->avail_in == 0 &
    [all...]
  /external/qemu/block/
cloop.c 37 z_stream zstream; member in struct:BDRVCloopState
90 if(inflateInit(&s->zstream) != Z_OK)
115 s->zstream.next_in = s->compressed_block;
116 s->zstream.avail_in = bytes;
117 s->zstream.next_out = s->uncompressed_block;
118 s->zstream.avail_out = s->block_size;
119 ret = inflateReset(&s->zstream);
122 ret = inflate(&s->zstream, Z_FINISH);
123 if(ret != Z_STREAM_END || s->zstream.total_out != s->block_size)
154 inflateEnd(&s->zstream);
    [all...]
dmg.c 48 z_stream zstream; member in struct:BDRVDMGState
175 if(inflateInit(&s->zstream) != Z_OK)
241 s->zstream.next_in = s->compressed_chunk;
242 s->zstream.avail_in = s->lengths[chunk];
243 s->zstream.next_out = s->uncompressed_chunk;
244 s->zstream.avail_out = 512*s->sectorcounts[chunk];
245 ret = inflateReset(&s->zstream);
248 ret = inflate(&s->zstream, Z_FINISH);
249 if(ret != Z_STREAM_END || s->zstream.total_out != 512*s->sectorcounts[chunk])
295 inflateEnd(&s->zstream);
    [all...]
  /frameworks/base/libs/androidfw/
ZipUtils.cpp 49 z_stream zstream; local
64 memset(&zstream, 0, sizeof(zstream));
65 zstream.zalloc = Z_NULL;
66 zstream.zfree = Z_NULL;
67 zstream.opaque = Z_NULL;
68 zstream.next_in = NULL;
69 zstream.avail_in = 0;
70 zstream.next_out = (Bytef*) buf;
71 zstream.avail_out = uncompressedLen
162 z_stream zstream; local
    [all...]
ZipFileRO.cpp 847 z_stream zstream; local
853 memset(&zstream, 0, sizeof(zstream));
854 zstream.zalloc = Z_NULL;
855 zstream.zfree = Z_NULL;
856 zstream.opaque = Z_NULL;
857 zstream.next_in = (Bytef*)inBuf;
858 zstream.avail_in = compLen;
859 zstream.next_out = (Bytef*) outBuf;
860 zstream.avail_out = uncompLen
914 z_stream zstream; local
    [all...]
  /system/core/libzipfile/
zipfile.c 81 z_stream zstream; local
86 memset(&zstream, 0, sizeof(zstream));
87 zstream.zalloc = Z_NULL;
88 zstream.zfree = Z_NULL;
89 zstream.opaque = Z_NULL;
90 zstream.next_in = (void*)in;
91 zstream.avail_in = clen;
92 zstream.next_out = (Bytef*) out;
93 zstream.avail_out = unlen
    [all...]
  /build/tools/zipalign/
ZipFile.cpp 750 z_stream zstream; local
768 memset(&zstream, 0, sizeof(zstream));
769 zstream.zalloc = Z_NULL;
770 zstream.zfree = Z_NULL;
771 zstream.opaque = Z_NULL;
772 zstream.next_in = NULL;
773 zstream.avail_in = 0;
774 zstream.next_out = outBuf;
775 zstream.avail_out = kBufSize
    [all...]
  /frameworks/base/tools/aapt/
ZipFile.cpp 750 z_stream zstream; local
768 memset(&zstream, 0, sizeof(zstream));
769 zstream.zalloc = Z_NULL;
770 zstream.zfree = Z_NULL;
771 zstream.opaque = Z_NULL;
772 zstream.next_in = NULL;
773 zstream.avail_in = 0;
774 zstream.next_out = outBuf;
775 zstream.avail_out = kBufSize
    [all...]
  /dalvik/libdex/
ZipArchive.cpp 674 z_stream zstream; local
683 memset(&zstream, 0, sizeof(zstream));
684 zstream.zalloc = Z_NULL;
685 zstream.zfree = Z_NULL;
686 zstream.opaque = Z_NULL;
687 zstream.next_in = NULL;
688 zstream.avail_in = 0;
689 zstream.next_out = (Bytef*) writeBuf;
690 zstream.avail_out = kBufSize
    [all...]
  /bootable/recovery/minzip/
Zip.c 563 z_stream zstream; local
572 memset(&zstream, 0, sizeof(zstream));
573 zstream.zalloc = Z_NULL;
574 zstream.zfree = Z_NULL;
575 zstream.opaque = Z_NULL;
576 zstream.next_in = NULL;
577 zstream.avail_in = 0;
578 zstream.next_out = (Bytef*) procBuf;
579 zstream.avail_out = sizeof(procBuf)
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pngstruct.h 66 z_stream zstream; /* pointer to decompression structure (below) */ member in struct:png_struct_def
71 /* Added in 1.5.4: state to keep track of whether the zstream has been
  /external/qemu/
vnc-android.c 566 z_streamp zstream = &vs->zlib_stream[stream_id]; local
577 if (zstream->opaque != vs) {
581 VNC_DEBUG("VNC: opaque = %p | vs = %p\n", zstream->opaque, vs);
582 zstream->zalloc = Z_NULL;
583 zstream->zfree = Z_NULL;
585 err = deflateInit2(zstream, vs->tight_compression, Z_DEFLATED, MAX_WBITS,
593 zstream->opaque = vs;
602 zstream->next_in = vs->zlib.buffer;
603 zstream->avail_in = vs->zlib.offset;
604 zstream->next_out = vs->output.buffer + vs->output.offset
    [all...]
vnc.c 560 z_streamp zstream = &vs->zlib_stream[stream_id]; local
571 if (zstream->opaque != vs) {
575 VNC_DEBUG("VNC: opaque = %p | vs = %p\n", zstream->opaque, vs);
576 zstream->zalloc = Z_NULL;
577 zstream->zfree = Z_NULL;
579 err = deflateInit2(zstream, vs->tight_compression, Z_DEFLATED, MAX_WBITS,
587 zstream->opaque = vs;
596 zstream->next_in = vs->zlib.buffer;
597 zstream->avail_in = vs->zlib.offset;
598 zstream->next_out = vs->output.buffer + vs->output.offset
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
png.h 1153 z_stream zstream; \/* pointer to decompression structure (below) *\/ member in struct:png_struct_def
    [all...]

Completed in 1846 milliseconds