Home | History | Annotate | Download | only in recovery

Lines Matching refs:footer

52     // archive comment.)  We start by reading this footer, this tells
64 unsigned char footer[FOOTER_SIZE];
65 if (fread(footer, 1, FOOTER_SIZE, f) != FOOTER_SIZE) {
66 LOGE("failed to read footer from %s (%s)\n", path, strerror(errno));
71 if (footer[2] != 0xff || footer[3] != 0xff) {
72 LOGE("footer is wrong\n");
77 size_t comment_size = footer[4] + (footer[5] << 8);
78 size_t signature_start = footer[0] + (footer[1] << 8);