Home | History | Annotate | Download | only in recovery

Lines Matching refs:footer

48     // archive comment.)  We start by reading this footer, this tells
60 unsigned char footer[FOOTER_SIZE];
61 if (fread(footer, 1, FOOTER_SIZE, f) != FOOTER_SIZE) {
62 LOGE("failed to read footer from %s (%s)\n", path, strerror(errno));
67 if (footer[2] != 0xff || footer[3] != 0xff) {
72 int comment_size = footer[4] + (footer[5] << 8);
73 int signature_start = footer[0] + (footer[1] << 8);