Home | History | Annotate | Download | only in utils

Lines Matching refs:footer

38                            * 32-bit footer size (4 bytes)
39 * 32-bit footer marker (4 bytes)
145 char *footer = new char[kFooterTagSize];
146 actual = TEMP_FAILURE_RETRY(read(fd, footer, kFooterTagSize));
148 LOGW("couldn't read footer signature: %s\n", strerror(errno));
152 unsigned int fileSig = get4LE((unsigned char*)footer + sizeof(int32_t));
154 LOGW("footer didn't match magic string (expected 0x%08x; got 0x%08x)\n",
159 footerSize = get4LE((unsigned char*)footer);
162 LOGW("claimed footer size is too large (0x%08zx; file size is 0x%08llx)\n",
168 LOGW("claimed footer size is too small (0x%zx; minimum size is 0x%x)\n",
191 LOGI("couldn't read ObbFile footer: %s\n", strerror(errno));
307 LOGW("couldn't write footer size: %s\n", strerror(errno));
313 LOGW("couldn't write footer magic signature: %s\n", strerror(errno));