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 448 * Increases the capacity of zip->metanames.
457 zip->metanames =
458 realloc(zip->metanames, new_metacount * sizeof(zip->metanames[0]));
459 if (zip->metanames == NULL) return -1;
461 zip->metanames[i] = NULL;
468 * Adds name to zip->metanames.
475 if (zip->metanames == NULL) {
477 zip->metanames = calloc(zip->metacount, sizeof(zip->metanames[0]))
    [all...]
java_util_zip_ZipFile.c 366 /* count the number of valid ZIP metanames */
368 if (zip->metanames != 0) {
370 if (zip->metanames[i] != 0) {
382 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 507 milliseconds