HomeSort by relevance Sort by last modified time
    Searched refs:metanames (Results 1 - 3 of 3) sorted by null

  /libcore/ojluni/src/main/native/
zip_util.c 449 * Increases the capacity of zip->metanames.
458 zip->metanames =
459 realloc(zip->metanames, new_metacount * sizeof(zip->metanames[0]));
460 if (zip->metanames == NULL) return -1;
462 zip->metanames[i] = NULL;
469 * Adds name to zip->metanames.
476 if (zip->metanames == NULL) {
478 zip->metanames = calloc(zip->metacount, sizeof(zip->metanames[0]))
    [all...]
java_util_zip_ZipFile.c 368 /* count the number of valid ZIP metanames */
370 if (zip->metanames != 0) {
372 if (zip->metanames[i] != 0) {
384 jstring str = (*env)->NewStringUTF(env, zip->metanames[i]);
zip_util.h 234 char **metanames; /* array of meta names (may have null names) */ member in struct:jzfile
235 jint metacurrent; /* the next empty slot in metanames array */
236 jint metacount; /* number of slots in metanames array */

Completed in 67 milliseconds