Lines Matching refs:ze
45 struct zip_entry *ze; in _zip_entry_new() local
47 ze = (struct zip_entry *)malloc(sizeof(struct zip_entry)); in _zip_entry_new()
48 if (!ze) { in _zip_entry_new()
65 ze = za->entry+za->nentry; in _zip_entry_new()
68 ze->state = ZIP_ST_UNCHANGED; in _zip_entry_new()
70 ze->ch_filename = NULL; in _zip_entry_new()
71 ze->ch_extra = NULL; in _zip_entry_new()
72 ze->ch_extra_len = -1; in _zip_entry_new()
73 ze->ch_comment = NULL; in _zip_entry_new()
74 ze->ch_comment_len = -1; in _zip_entry_new()
75 ze->source = NULL; in _zip_entry_new()
80 return ze; in _zip_entry_new()