/external/zlib/test/ |
example.c | 73 static free_func zfree = myfree; variable 78 static free_func zfree = (free_func)0; variable 209 c_stream.zfree = zfree; 248 d_stream.zfree = zfree; 287 c_stream.zfree = zfree; 344 d_stream.zfree = zfree; [all...] |
/external/qemu/distrib/zlib-1.2.3/ |
uncompr.c | 45 stream.zfree = (free_func)0;
|
compress.c | 43 stream.zfree = (free_func)0;
|
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 48 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 617 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 619 ZFREE(strm, strm->state);
|
zutil.h | 266 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr)) 267 #define TRY_FREE(s, p) {if (p) ZFREE(s, p);}
|
/external/zlib/ |
uncompr.c | 43 stream.zfree = (free_func)0;
|
compress.c | 43 stream.zfree = (free_func)0;
|
infback.c | 22 strm provides memory allocation functions in zalloc and zfree, or 52 if (strm->zfree == (free_func)0) 56 strm->zfree = zcfree; 634 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 636 ZFREE(strm, strm->state);
|
/bootable/recovery/applypatch/ |
imgpatch.c | 135 strm.zfree = Z_NULL; 190 strm.zfree = Z_NULL;
|
/external/zlib/examples/ |
fitblk.c | 149 def.zfree = Z_NULL; 181 inf.zfree = Z_NULL;
|
zpipe.c | 46 strm.zfree = Z_NULL; 102 strm.zfree = Z_NULL;
|
zran.c | 151 strm.zfree = Z_NULL; 265 strm.zfree = Z_NULL;
|
/libcore/luni/src/main/native/ |
zip.h | 46 stream.zfree = Z_NULL;
|
/external/skia/src/core/ |
SkFlate.cpp | 39 flateData.zfree = NULL;
|
/external/zlib/contrib/pascal/ |
example.pas | 192 c_stream.zfree := NIL; 237 d_stream.zfree := NIL; 278 c_stream.zfree := NIL; 332 d_stream.zfree := NIL; 376 c_stream.zfree := NIL; 415 d_stream.zfree := NIL; 455 c_stream.zfree := NIL; 492 d_stream.zfree := NIL;
|
zlibpas.pas | 41 zfree: free_func; (* used to free the internal state *) 42 opaque: Pointer; (* private data object passed to zalloc and zfree *)
|
/external/protobuf/src/google/protobuf/io/ |
gzip_stream.cc | 53 zcontext_.zfree = Z_NULL; 207 zcontext_.zfree = Z_NULL;
|
/frameworks/native/libs/utils/ |
ZipUtils.cpp | 65 zstream.zfree = Z_NULL; 177 zstream.zfree = Z_NULL;
|
/system/extras/tests/bionic/libc/other/ |
test_zlib.c | 55 strm.zfree = Z_NULL; 103 strm.zfree = Z_NULL;
|
/external/openssl/crypto/comp/ |
c_zlib.c | 149 state->istream.zfree = zlib_zfree; 161 state->ostream.zfree = zlib_zfree; 321 stream.zfree = (free_func)0; 493 ctx->zin.zfree = Z_NULL; 499 ctx->zout.zfree = Z_NULL;
|
/external/qemu/ |
loader.c | 385 static void zfree(void *x, void *addr) function 433 s.zfree = zfree;
|
/external/zlib/contrib/delphi/ |
ZLib.pas | 36 zfree: TFree; // used to free the internal state 37 AppData: Pointer; // private data object passed to zalloc and zfree 294 strm.zfree := zlibFreeMem; 333 strm.zfree := zlibFreeMem; 373 strm.zfree := zlibFreeMem; 395 FZRec.zfree := zlibFreeMem;
|
/external/zlib/contrib/infback9/ |
infback9.c | 14 strm provides memory allocation functions in zalloc and zfree, or 37 if (strm->zfree == (free_func)0) strm->zfree = zcfree; 611 if (strm == Z_NULL || strm->state == Z_NULL || strm->zfree == (free_func)0) 613 ZFREE(strm, strm->state);
|
/frameworks/base/libs/androidfw/ |
StreamingZipInflater.cpp | 84 mInflateState.zfree = Z_NULL;
|
/system/core/libzipfile/ |
zipfile.c | 88 zstream.zfree = Z_NULL;
|