Lines Matching refs:zf
50 struct zip_file *zf; in zip_fopen_index_encrypted() local
62 if ((zf=_zip_file_new(za)) == NULL) { in zip_fopen_index_encrypted()
67 zf->src = src; in zip_fopen_index_encrypted()
69 return zf; in zip_fopen_index_encrypted()
77 struct zip_file *zf, **file; in _zip_file_new() local
79 if ((zf=(struct zip_file *)malloc(sizeof(struct zip_file))) == NULL) { in _zip_file_new()
91 free(zf); in _zip_file_new()
98 za->file[za->nfile++] = zf; in _zip_file_new()
100 zf->za = za; in _zip_file_new()
101 _zip_error_init(&zf->error); in _zip_file_new()
102 zf->eof = 0; in _zip_file_new()
103 zf->src = NULL; in _zip_file_new()
105 return zf; in _zip_file_new()