Lines Matching refs:za
47 zip_t *za; in _zip_new() local
49 za = (zip_t *)malloc(sizeof(struct zip)); in _zip_new()
50 if (!za) { in _zip_new()
55 if ((za->names = _zip_hash_new(ZIP_HASH_TABLE_SIZE, error)) == NULL) { in _zip_new()
56 free(za); in _zip_new()
60 za->src = NULL; in _zip_new()
61 za->open_flags = 0; in _zip_new()
62 zip_error_init(&za->error); in _zip_new()
63 za->flags = za->ch_flags = 0; in _zip_new()
64 za->default_password = NULL; in _zip_new()
65 za->comment_orig = za->comment_changes = NULL; in _zip_new()
66 za->comment_changed = 0; in _zip_new()
67 za->nentry = za->nentry_alloc = 0; in _zip_new()
68 za->entry = NULL; in _zip_new()
69 za->nopen_source = za->nopen_source_alloc = 0; in _zip_new()
70 za->open_source = NULL; in _zip_new()
71 za->tempdir = NULL; in _zip_new()
73 return za; in _zip_new()