Searched refs:metanames (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.c447 * Increases the capacity of zip->metanames.
456 zip->metanames =
457 realloc(zip->metanames, new_metacount * sizeof(zip->metanames[0]));
458 if (zip->metanames == NULL) return -1;
460 zip->metanames[i] = NULL;
467 * Adds name to zip->metanames.
474 if (zip->metanames == NULL) {
476 zip->metanames = calloc(zip->metacount, sizeof(zip->metanames[
[all...]
H A DZipFile.c358 /* count the number of valid ZIP metanames */
360 if (zip->metanames != 0) {
362 if (zip->metanames[i] != 0) {
374 jstring str = (*env)->NewStringUTF(env, zip->metanames[i]);
H A Dzip_util.h227 char **metanames; /* array of meta names (may have null names) */ member in struct:jzfile
228 jint metacurrent; /* the next empty slot in metanames array */
229 jint metacount; /* number of slots in metanames array */
/openjdk7/hotspot/src/share/vm/classfile/
H A DclassLoader.cpp1140 char **metanames; /* array of meta names (may have null names) */ member in struct:real_jzfile13
1141 jint metacount; /* number of slots in metanames array */

Completed in 40 milliseconds