Home
last modified time | relevance | path

Searched refs:gz_open (Results 1 – 4 of 4) sorted by relevance

/freebsd/sys/contrib/zstd/zlibWrapper/
H A Dgzlib.c23 local gzFile gz_open _Z_OF((const void *, int, const char *));
90 local gzFile gz_open(const void *path, int fd, const char *mode) { in gz_open() function
266 return gz_open(path, -1, mode); in gzopen()
271 return gz_open(path, -1, mode); in gzopen64()
286 gz = gz_open(path, fd, mode); in gzdopen()
294 return gz_open(path, -2, mode); in gzopen_w()
/freebsd/sys/contrib/zlib/
H A Dgzlib.c89 local gzFile gz_open(const void *path, int fd, const char *mode) { in gz_open() function
291 return gz_open(path, -1, mode); in gzopen()
296 return gz_open(path, -1, mode); in gzopen64()
311 gz = gz_open(path, fd, mode); in gzdopen()
319 return gz_open(path, -2, mode); in gzopen_w()
H A DChangeLog470 - Check for NULL path in gz_open [Homurlu]
511 - Fix memory leak on error in gz_open()
565 - Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open()
614 - Catch memory allocation failure in gz_open()
696 - Correct error return bug in gz_open() by setting state [Brown]
/freebsd/sys/contrib/zlib/test/
H A Dminigzip.c198 static gzFile gz_open(const char *path, int fd, const char *mode) { in gz_open() function
233 return gz_open(path, -1, mode); in gzopen()
237 return gz_open(NULL, fd, mode); in gzdopen()