HomeSort by relevance Sort by last modified time
    Searched defs:zstream (Results 1 - 15 of 15) 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 38 z_stream zstream; member in struct:BDRVCloopState
94 if(inflateInit(&s->zstream) != Z_OK)
114 s->zstream.next_in = s->compressed_block;
115 s->zstream.avail_in = bytes;
116 s->zstream.next_out = s->uncompressed_block;
117 s->zstream.avail_out = s->block_size;
118 ret = inflateReset(&s->zstream);
121 ret = inflate(&s->zstream, Z_FINISH);
122 if(ret != Z_STREAM_END || s->zstream.total_out != s->block_size)
154 inflateEnd(&s->zstream);
    [all...]
dmg.c 50 z_stream zstream; member in struct:BDRVDMGState
165 if(inflateInit(&s->zstream) != Z_OK)
230 s->zstream.next_in = s->compressed_chunk;
231 s->zstream.avail_in = s->lengths[chunk];
232 s->zstream.next_out = s->uncompressed_chunk;
233 s->zstream.avail_out = 512*s->sectorcounts[chunk];
234 ret = inflateReset(&s->zstream);
237 ret = inflate(&s->zstream, Z_FINISH);
238 if(ret != Z_STREAM_END || s->zstream.total_out != 512*s->sectorcounts[chunk])
284 inflateEnd(&s->zstream);
    [all...]
  /frameworks/base/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 579 z_stream zstream; local
585 memset(&zstream, 0, sizeof(zstream));
586 zstream.zalloc = Z_NULL;
587 zstream.zfree = Z_NULL;
588 zstream.opaque = Z_NULL;
589 zstream.next_in = (Bytef*)inBuf;
590 zstream.avail_in = compLen;
591 zstream.next_out = (Bytef*) outBuf;
592 zstream.avail_out = uncompLen
646 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.c 511 z_stream zstream; local
517 memset(&zstream, 0, sizeof(zstream));
518 zstream.zalloc = Z_NULL;
519 zstream.zfree = Z_NULL;
520 zstream.opaque = Z_NULL;
521 zstream.next_in = (Bytef*)inBuf;
522 zstream.avail_in = compLen;
523 zstream.next_out = (Bytef*) writeBuf;
524 zstream.avail_out = sizeof(writeBuf)
    [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...]
vl-android.c 3222 z_stream zstream; member in struct:RamDecompressState
    [all...]
vl.c 3090 z_stream zstream; member in struct:RamDecompressState
    [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 321 milliseconds