Home | History | Annotate | Download | only in recovery

Lines Matching refs:footer

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