Searched defs:zep (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/zip/lib/ |
| H A D | zip_error.c | 75 _zip_error_get(struct zip_error *err, int *zep, int *sep) 77 if (zep) 78 *zep = err->zip_err; 70 _zip_error_get(struct zip_error *err, int *zep, int *sep) argument
|
| H A D | zip_error_get.c | 43 zip_error_get(struct zip *za, int *zep, int *sep) 45 _zip_error_get(&za->error, zep, sep); 41 zip_error_get(struct zip *za, int *zep, int *sep) argument
|
| H A D | zip_fdopen.c | 43 zip_fdopen(int fd_orig, int flags, int *zep) 52 *zep = ZIP_ER_OPEN; 58 *zep = ZIP_ER_OPEN; 63 return _zip_open(NULL, fp, flags, ZIP_AFL_RDONLY, zep); 41 zip_fdopen(int fd_orig, int flags, int *zep) argument
|
| H A D | zip_file_error_get.c | 43 zip_file_error_get(struct zip_file *zf, int *zep, int *sep) 45 _zip_error_get(&zf->error, zep, sep); 41 zip_file_error_get(struct zip_file *zf, int *zep, int *sep) argument
|
| H A D | zip_open.c | 63 zip_open(const char *fn, int flags, int *zep) 68 return _zip_allocate_new(fn, zep); 71 switch (_zip_file_exists(fn, flags, zep)) { 77 return _zip_allocate_new(fn, zep); 83 set_error(zep, NULL, ZIP_ER_OPEN); 87 return _zip_open(fn, fp, flags, 0, zep); 94 _zip_open(const char *fn, FILE *fp, int flags, int aflags, int *zep) 102 *zep = ZIP_ER_SEEK; 109 if ((za=_zip_allocate_new(fn, zep)) == NULL) 116 cdir = _zip_find_central_dir(fp, flags, zep, le 61 zip_open(const char *fn, int flags, int *zep) argument 91 _zip_open(const char *fn, FILE *fp, int flags, int aflags, int *zep) argument 146 set_error(int *zep, struct zip_error *err, int ze) argument 455 _zip_allocate_new(const char *fn, int *zep) argument 481 _zip_file_exists(const char *fn, int flags, int *zep) argument 511 _zip_find_central_dir(FILE *fp, int flags, int *zep, off_t len) argument [all...] |
| /PHP_5_3/ext/zip/ |
| H A D | php_zip.c | 451 int zep, syp; local 453 zip_error_get(za, &zep, &syp); 454 return zep; 460 int zep, syp; local 462 zip_error_get(za, &zep, &syp); 1585 int zep, syp, len; local 1594 zip_error_get(intern, &zep, &syp); 1596 len = zip_error_to_str(error_string, 128, zep, syp);
|
Completed in 22 milliseconds