Searched refs:gz_open (Results 1 – 5 of 5) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/ |
A D | gzlib.c | 20 local gzFile gz_open OF((const void *, int, const char *)); 91 local gzFile gz_open(path, fd, mode) in gz_open() function 274 return gz_open(path, -1, mode); 282 return gz_open(path, -1, mode); 300 gz = gz_open(path, fd, mode); 311 return gz_open(path, -2, mode);
|
A D | ChangeLog | 316 - Check for NULL path in gz_open [Homurlu] 357 - Fix memory leak on error in gz_open() 411 - Fix memory leaks in gzclose_r() and gzclose_w(), file leak in gz_open() 460 - Catch memory allocation failure in gz_open() 542 - Correct error return bug in gz_open() by setting state [Brown]
|
/AliOS-Things-master/components/py_engine/external/unzip/src/ |
A D | gzlib.c | 16 local gzFile gz_open OF((const char *, int, const char *)); 87 local gzFile gz_open(path, fd, mode) in gz_open() function 200 return gz_open(path, -1, mode); 208 return gz_open(path, -1, mode); 222 gz = gz_open(path, fd, mode);
|
A D | gzio.c-bak | 77 local gzFile gz_open OF((const char *path, const char *mode, int fd)); 89 gz_open returns NULL if the file could not be opened or if there was 94 local gzFile gz_open (path, mode, fd) 213 return gz_open (path, mode, -1); 229 return gz_open (name, mode, fd);
|
/AliOS-Things-master/components/SDL2/src/image/external/zlib-1.2.11/test/ |
A D | minigzip.c | 180 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
|
Completed in 16 milliseconds