Home
last modified time | relevance | path

Searched refs:gzwrite (Results 1 – 12 of 12) sorted by relevance

/titanic_53/usr/src/boot/lib/libz/test/
H A Dminigzip.c234 int gzwrite OF((gzFile, const void *, unsigned));
236 int gzwrite(gz, buf, len) in gzwrite() function
384 if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
416 len = gzwrite(out, (char *)buf, (unsigned)buf_len);
/titanic_53/usr/src/boot/lib/libz/
H A Dzopen.c23 return gzwrite(cookie, (void*)data, size); in xgzwrite()
H A DSymbol.map67 gzwrite;
H A DMakefile28 SRCS+= gzwrite.c
H A Dgzwrite.c168 int ZEXPORT gzwrite(file, buf, len) in gzwrite() function
290 if (gzwrite(file, buf, 1) != 1)
305 ret = gzwrite(file, str, len);
H A Dzconf.h92 # define gzwrite z_gzwrite macro
H A DChangeLog17 - Add casts in gzwrite.c for pointer differences
40 - Fix bug in gzclose() when gzwrite() runs out of memory
82 - Fix bug in gzclose_w() when gzwrite() fails to allocate memory
214 - Fix gzwrite.c to accommodate reduced memory zlib compilation
371 - Fix bug in void-returning vsprintf() case in gzwrite.c
389 - Avoid MSVC loss of data warnings in gzread.c, gzwrite.c
421 - Return zero for gzwrite() errors to match zlib.h description
435 - Avoid void * arithmetic in gzread.c and gzwrite.c
446 - Add checks on len in gzread() and gzwrite()
448 - Remove zlib version check in gzwrite()
[all …]
H A Dzlib.h1341 ZEXTERN int ZEXPORT gzwrite OF((gzFile file,
/titanic_53/usr/src/contrib/zlib/
H A Dzconf.h122 # define gzwrite z_gzwrite macro
H A DChangeLog12 - Avoid some conversion warnings in gzread.c and gzwrite.c
74 - Fix bug in gzwrite.c that produced corrupt gzip files
92 - Loop on write() calls in gzwrite.c in case of non-blocking I/O
123 - Add casts in gzwrite.c for pointer differences
146 - Fix bug in gzclose() when gzwrite() runs out of memory
188 - Fix bug in gzclose_w() when gzwrite() fails to allocate memory
320 - Fix gzwrite.c to accommodate reduced memory zlib compilation
477 - Fix bug in void-returning vsprintf() case in gzwrite.c
495 - Avoid MSVC loss of data warnings in gzread.c, gzwrite.c
527 - Return zero for gzwrite() errors to match zlib.h description
[all …]
H A Dzlib.h1448 ZEXTERN int ZEXPORT gzwrite OF((gzFile file, voidpc buf, unsigned len));
/titanic_53/usr/src/cmd/boot/bootadm/
H A Dbootadm.c2001 if (gzwrite(cf.out.gzfile, buf, size) < 1) { in cache_write()