Home
last modified time | relevance | path

Searched refs:zipd (Results 1 – 7 of 7) sorted by relevance

/openbsd-src/gnu/usr.bin/gcc/gcc/java/
H A Dzextract.c320 ZipDirectory *zipd = (ZipDirectory*)(dir_ptr + dir_last_pad); local
331 zipd->filename_length = filename_length;
332 zipd->compression_method = compression_method;
333 zipd->size = size;
334 zipd->uncompressed_size = uncompressed_size;
335 zipd->zipf = zipf;
341 zipd->filestart = find_zip_file_start (zipf->fd, file_offset);
342 zipd->filename_offset = CREC_SIZE+4 - dir_last_pad;
344 = zipd->filename_offset + zipd->filename_length + extra_field_length;
345 zipd->direntry_size =
[all …]
H A Djcf-io.c156 ZipDirectory *zipd; variable
168 zipd = (struct ZipDirectory*) zipf->central_directory;
169 for (i = 0; i < zipf->count; i++, zipd = ZIPDIR_NEXT (zipd))
171 if (len == zipd->filename_length &&
172 strncmp (ZIPDIR_FILENAME (zipd), zipmember, len) == 0)
178 return read_zip_member(jcf, zipd, zipf);
187 DEFUN(read_zip_member, (jcf, zipd, zipf),
188 JCF *jcf AND ZipDirectory *zipd AND ZipFile *zipf)
191 jcf->zipd = (void *)zipd;
193 if (zipd->compression_method == Z_NO_COMPRESSION)
[all …]
H A Djcf.h134 struct ZipDirectory *zipd; /* Directory entry where it was found */ member
140 #define JCF_SEEN_IN_ZIP(JCF) ((JCF)->zipd != NULL)
195 CPOOL_INIT(&(JCF)->cpool), (JCF)->java_source = 0, (JCF)->zipd = 0, \
H A Djcf-parse.c499 this_jcf.zipd = NULL;
549 current_jcf->zipd, current_jcf->zipd->zipf);
1250 jcf->zipd = zdir; in process_zip_dir()
H A Dparse.c10449 ZipDirectory *zipd = (ZipDirectory *) zipf->central_directory; local
10458 for (k = 0; k < zipf->count; k++, zipd = ZIPDIR_NEXT (zipd))
10460 const char *current_entry = ZIPDIR_FILENAME (zipd);
10461 int current_entry_len = zipd->filename_length;
H A Dparse.y6884 ZipDirectory *zipd = (ZipDirectory *) zipf->central_directory; local
6893 for (k = 0; k < zipf->count; k++, zipd = ZIPDIR_NEXT (zipd))
6895 const char *current_entry = ZIPDIR_FILENAME (zipd);
6896 int current_entry_len = zipd->filename_length;
H A DChangeLog3477 (JCF_ZERO): Also clear zipd field.
3882 zipd and consequently clobbering the header contents.
3977 (struct JCF): Declare zipd field to have type struct ZipDirectory.
13868 *jcf.h: (typedef struct JCF): New fields java_source and zipd.