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