Home | History | Annotate | Download | only in aapt

Lines Matching full:size

30     off_t size;
50 size = lseek(fd, 0, SEEK_END);
53 if (size < 0 || amt < 0) {
54 fprintf(stderr, "apk: error determining file size: %s\n", filename);
58 buf = malloc(size);
64 amt = read(fd, buf, size);
65 if (amt != size) {
72 zip = init_zipfile(buf, size);
89 size = get_zipentry_size(entry);
90 bufsize = size + (size / 1000) + 1;
99 ResTable res(resfile, size, resfile);
106 size_t stringCount = strings->size();