/external/zlib/src/ |
inflate.c | 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 109 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 112 strm->msg = Z_NULL; 119 state->head = Z_NULL; 134 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 150 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 169 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) [all...] |
deflate.c | 233 if (version == Z_NULL || version[0] != my_version[0] || 237 if (strm == Z_NULL) return Z_STREAM_ERROR; 239 strm->msg = Z_NULL; 278 if (s == Z_NULL) return Z_MEM_ERROR; 283 s->gzhead = Z_NULL; 305 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || 306 s->pending_buf == Z_NULL) { 334 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL [all...] |
infback.c | 23 Z_NULL to use the library memory allocation functions. 37 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || 40 if (strm == Z_NULL || window == Z_NULL || 43 strm->msg = Z_NULL; /* in case we return an error */ 60 if (state == Z_NULL) return Z_MEM_ERROR; 163 next = Z_NULL; \ 243 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it 248 are not correct, i.e. strm is Z_NULL or the state was not initialized. 273 if (strm == Z_NULL || strm->state == Z_NULL [all...] |
/external/chromium_org/third_party/zlib/ |
inflate.c | 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 111 strm->msg = Z_NULL; 117 state->head = Z_NULL; 138 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 157 if (state->window != Z_NULL && state->wbits != (unsigned)windowBits) { 159 state->window = Z_NULL; 177 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] | [all...] |
deflate.c | 231 if (version == Z_NULL || version[0] != my_version[0] || 235 if (strm == Z_NULL) return Z_STREAM_ERROR; 237 strm->msg = Z_NULL; 267 if (s == Z_NULL) return Z_MEM_ERROR; 272 s->gzhead = Z_NULL; 297 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || 298 s->pending_buf == Z_NULL) { 325 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL | [all...] |
infback.c | 23 Z_NULL to use the library memory allocation functions. 37 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || 40 if (strm == Z_NULL || window == Z_NULL || 43 strm->msg = Z_NULL; /* in case we return an error */ 51 if (state == Z_NULL) return Z_MEM_ERROR; 154 next = Z_NULL; \ 234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it 239 are not correct, i.e. strm is Z_NULL or the state was not initialized. 264 if (strm == Z_NULL || strm->state == Z_NULL [all...] |
/external/zlib/src/test/ |
infcover.c | 50 strm members to Z_NULL to use the default memory 231 strm->opaque = Z_NULL; 232 strm->zalloc = Z_NULL; 233 strm->zfree = Z_NULL; 295 strm.next_in = Z_NULL; 357 strm.next_in = Z_NULL; 362 ret = inflateSetDictionary(&strm, Z_NULL, 0); 375 strm.next_in = Z_NULL; 381 strm.next_in = Z_NULL; 394 ret = inflate(Z_NULL, 0); assert(ret == Z_STREAM_ERROR) [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
inflate.c | 78 * - Check next_in and next_out for Z_NULL on entry to inflate() 108 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 111 strm->msg = Z_NULL; 117 state->head = Z_NULL; 135 if (strm == Z_NULL || strm->state == Z_NULL) return Z_STREAM_ERROR; 152 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || 155 if (strm == Z_NULL) return Z_STREAM_ERROR; 156 strm->msg = Z_NULL; /* in case we return an error * [all...] |
deflate.c | 236 if (version == Z_NULL || version[0] != my_version[0] || 240 if (strm == Z_NULL) return Z_STREAM_ERROR; 242 strm->msg = Z_NULL; 272 if (s == Z_NULL) return Z_MEM_ERROR; 277 s->gzhead = Z_NULL; 297 if (s->window == Z_NULL || s->prev == Z_NULL || s->head == Z_NULL || 298 s->pending_buf == Z_NULL) { 325 if (strm == Z_NULL || strm->state == Z_NULL || dictionary == Z_NULL | [all...] |
gzio.c | 106 if (!path || !mode) return Z_NULL; 109 if (!s) return Z_NULL; 114 s->stream.next_in = s->inbuf = Z_NULL; 115 s->stream.next_out = s->outbuf = Z_NULL; 123 s->crc = crc32(0L, Z_NULL, 0); 129 return destroy(s), (gzFile)Z_NULL; 149 if (s->mode == '\0') return destroy(s), (gzFile)Z_NULL; 161 if (err != Z_OK || s->outbuf == Z_NULL) { 162 return destroy(s), (gzFile)Z_NULL; 174 if (err != Z_OK || s->inbuf == Z_NULL) { [all...] |
infback.c | 23 Z_NULL to use the library memory allocation functions. 37 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || 40 if (strm == Z_NULL || window == Z_NULL || 43 strm->msg = Z_NULL; /* in case we return an error */ 51 if (state == Z_NULL) return Z_MEM_ERROR; 154 next = Z_NULL; \ 234 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it 239 are not correct, i.e. strm is Z_NULL or the state was not initialized. 264 if (strm == Z_NULL || strm->state == Z_NULL [all...] |
/external/zlib/src/examples/ |
fitblk.c | 148 def.zalloc = Z_NULL; 149 def.zfree = Z_NULL; 150 def.opaque = Z_NULL; 180 inf.zalloc = Z_NULL; 181 inf.zfree = Z_NULL; 182 inf.opaque = Z_NULL; 184 inf.next_in = Z_NULL;
|
zpipe.c | 45 strm.zalloc = Z_NULL; 46 strm.zfree = Z_NULL; 47 strm.opaque = Z_NULL; 101 strm.zalloc = Z_NULL; 102 strm.zfree = Z_NULL; 103 strm.opaque = Z_NULL; 105 strm.next_in = Z_NULL;
|
zran.c | 155 strm.zalloc = Z_NULL; 156 strm.zfree = Z_NULL; 157 strm.opaque = Z_NULL; 159 strm.next_in = Z_NULL; 269 strm.zalloc = Z_NULL; 270 strm.zfree = Z_NULL; 271 strm.opaque = Z_NULL; 273 strm.next_in = Z_NULL;
|
gun.c | 198 not equal to Z_NULL), or Z_DATA_ERROR for invalid input. 399 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */ 469 outd.crc = crc32(0L, Z_NULL, 0); 479 strm->next_in = Z_NULL; /* so Z_BUF_ERROR means EOF */ 608 if (strm->next_in != Z_NULL) { 640 strm.zalloc = Z_NULL; 641 strm.zfree = Z_NULL; 642 strm.opaque = Z_NULL;
|
/bootable/recovery/applypatch/ |
imgpatch.c | 141 strm.zalloc = Z_NULL; 142 strm.zfree = Z_NULL; 143 strm.opaque = Z_NULL; 202 strm.zalloc = Z_NULL; 203 strm.zfree = Z_NULL; 204 strm.opaque = Z_NULL;
|
/libcore/luni/src/main/native/ |
ZipUtilities.cpp | 36 stream.opaque = Z_NULL; 37 stream.zalloc = Z_NULL; 38 stream.zfree = Z_NULL;
|
/external/zlib/src/contrib/infback9/ |
infback9.c | 15 Z_NULL to use the library memory allocation functions. 27 if (version == Z_NULL || version[0] != ZLIB_VERSION[0] || 30 if (strm == Z_NULL || window == Z_NULL) 32 strm->msg = Z_NULL; /* in case we return an error */ 40 if (state == Z_NULL) return Z_MEM_ERROR; 130 next = Z_NULL; \ 210 Z_BUF_ERROR. strm->next_in can be checked for Z_NULL to see whether it 215 are not correct, i.e. strm is Z_NULL or the state was not initialized. 253 if (strm == Z_NULL || strm->state == Z_NULL [all...] |
/system/extras/tests/bionic/libc/other/ |
test_zlib.c | 54 strm.zalloc = Z_NULL; 55 strm.zfree = Z_NULL; 56 strm.opaque = Z_NULL; 102 strm.zalloc = Z_NULL; 103 strm.zfree = Z_NULL; 104 strm.opaque = Z_NULL; 106 strm.next_in = Z_NULL;
|
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 52 zcontext_.zalloc = Z_NULL; 53 zcontext_.zfree = Z_NULL; 54 zcontext_.opaque = Z_NULL; 212 zcontext_.zalloc = Z_NULL; 213 zcontext_.zfree = Z_NULL; 214 zcontext_.opaque = Z_NULL;
|
/external/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 52 zcontext_.zalloc = Z_NULL; 53 zcontext_.zfree = Z_NULL; 54 zcontext_.opaque = Z_NULL; 206 zcontext_.zalloc = Z_NULL; 207 zcontext_.zfree = Z_NULL; 208 zcontext_.opaque = Z_NULL;
|
/frameworks/base/libs/androidfw/ |
ZipUtils.cpp | 65 zstream.zalloc = Z_NULL; 66 zstream.zfree = Z_NULL; 67 zstream.opaque = Z_NULL; 178 zstream.zalloc = Z_NULL; 179 zstream.zfree = Z_NULL; 180 zstream.opaque = Z_NULL;
|
StreamingZipInflater.cpp | 100 mInflateState.zalloc = Z_NULL; 101 mInflateState.zfree = Z_NULL; 102 mInflateState.opaque = Z_NULL;
|
/system/core/libzipfile/ |
zipfile.c | 87 zstream.zalloc = Z_NULL; 88 zstream.zfree = Z_NULL; 89 zstream.opaque = Z_NULL;
|
/art/runtime/ |
zip_archive_test.cc | 45 uint32_t computed_crc = crc32(0L, Z_NULL, 0);
|