Searched refs:last_ecc (Results 1 – 1 of 1) sorted by relevance
/system/core/toolbox/ |
D | nandread.c | 46 struct mtd_ecc_stats initial_ecc, last_ecc, ecc; in nandread_main() local 170 last_ecc = initial_ecc; in nandread_main() 220 if (ecc.corrected != last_ecc.corrected) in nandread_main() 221 printf("ecc corrected, %u, at %" PRIx64 "\n", ecc.corrected - last_ecc.corrected, pos); in nandread_main() 222 if (ecc.failed != last_ecc.failed) in nandread_main() 223 printf("ecc failed, %u, at %" PRIx64 "\n", ecc.failed - last_ecc.failed, pos); in nandread_main() 224 if (ecc.badblocks != last_ecc.badblocks) in nandread_main() 225 printf("ecc badblocks, %u, at %" PRIx64 "\n", ecc.badblocks - last_ecc.badblocks, pos); in nandread_main() 226 if (ecc.bbtblocks != last_ecc.bbtblocks) in nandread_main() 227 printf("ecc bbtblocks, %u, at %" PRIx64 "\n", ecc.bbtblocks - last_ecc.bbtblocks, pos); in nandread_main() [all …]
|