HomeSort by relevance Sort by last modified time
    Searched defs:zstream (Results 1 - 13 of 13) 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/native/libs/utils/
ZipUtils.cpp 48 z_stream zstream; local
63 memset(&zstream, 0, sizeof(zstream));
64 zstream.zalloc = Z_NULL;
65 zstream.zfree = Z_NULL;
66 zstream.opaque = Z_NULL;
67 zstream.next_in = NULL;
68 zstream.avail_in = 0;
69 zstream.next_out = (Bytef*) buf;
70 zstream.avail_out = uncompressedLen
160 z_stream zstream; local
    [all...]
ZipFileRO.cpp 786 z_stream zstream; local
792 memset(&zstream, 0, sizeof(zstream));
793 zstream.zalloc = Z_NULL;
794 zstream.zfree = Z_NULL;
795 zstream.opaque = Z_NULL;
796 zstream.next_in = (Bytef*)inBuf;
797 zstream.avail_in = compLen;
798 zstream.next_out = (Bytef*) outBuf;
799 zstream.avail_out = uncompLen
853 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...]
  /dalvik/libdex/
ZipArchive.cpp 593 z_stream zstream; local
602 memset(&zstream, 0, sizeof(zstream));
603 zstream.zalloc = Z_NULL;
604 zstream.zfree = Z_NULL;
605 zstream.opaque = Z_NULL;
606 zstream.next_in = NULL;
607 zstream.avail_in = 0;
608 zstream.next_out = (Bytef*) writeBuf;
609 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...]
  /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...]
  /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 390 milliseconds