Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
Dgzlib.c20 local gzFile gz_open OF((const void *, int, const char *));
91 local gzFile gz_open(path, fd, mode) in gz_open() function
272 return gz_open(path, -1, mode);
280 return gz_open(path, -1, mode);
298 gz = gz_open(path, fd, mode);
309 return gz_open(path, -2, mode);
Dminigzip.c180 gzFile gz_open OF((const char *, int, const char *));
186 return gz_open(path, -1, mode);
193 return gz_open(NULL, fd, mode);
196 gzFile gz_open(path, fd, mode) in gz_open() function
DChangeLog273 - Check for NULL path in gz_open [Homurlu]
314 - Fix memory leak on error in gz_open()
368 - Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open()
417 - Catch memory allocation failure in gz_open()
499 - Correct error return bug in gz_open() by setting state [Brown]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dgzio.c76 local gzFile gz_open OF((const char *path, const char *mode, int fd));
93 local gzFile gz_open (path, mode, fd) in gz_open() function
212 return gz_open (path, mode, -1);
228 return gz_open (name, mode, fd);