Lines Matching defs:footer
40 * 32-bit footer size (4 bytes)
41 * 32-bit footer marker (4 bytes)
136 char footer[kFooterTagSize];
137 actual = TEMP_FAILURE_RETRY(read(fd, footer, kFooterTagSize));
139 ALOGW("couldn't read footer signature: %s\n", strerror(errno));
143 unsigned int fileSig = get4LE((unsigned char*)footer + sizeof(int32_t));
145 ALOGW("footer didn't match magic string (expected 0x%08x; got 0x%08x)\n",
150 footerSize = get4LE((unsigned char*)footer);
153 ALOGW("claimed footer size is too large (0x%08zx; file size is 0x%08lld)\n",
159 ALOGW("claimed footer size is too small (0x%zx; minimum size is 0x%x)\n",
182 ALOGI("couldn't read ObbFile footer: %s\n", strerror(errno));
298 ALOGW("couldn't write footer size: %s\n", strerror(errno));
304 ALOGW("couldn't write footer magic signature: %s\n", strerror(errno));