Searched refs:gz_open (Results 1 – 4 of 4) sorted by relevance
/external/pdfium/third_party/zlib_v128/ |
D | gzlib.c | 20 local gzFile gz_open OF((const void *, int, const char *)); 91 local gzFile gz_open( in gz_open() function 272 return gz_open(path, -1, mode); in gzopen() 280 return gz_open(path, -1, mode); in gzopen64() 298 gz = gz_open(path, fd, mode); in gzdopen() 309 return gz_open(path, -2, mode); in gzopen_w()
|
/external/zlib/src/ |
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 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);
|
D | ChangeLog | 273 - 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]
|
/external/zlib/src/test/ |
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
|