| 952 | } |
| 953 | |
| 954 | static void dump_cbmem_toc(void) |
| 955 | { |
| 956 | int i = 0; |
| 957 | |
| 958 | printf("CBMEM table of contents:\n"); |
| 959 | printf(" %-20s %-8s %-8s %-8s\n", "NAME", "ID", "START", "LENGTH"); |
| 960 | |
| 961 | cbmem_drv_foreach_cbmem_entry(toc_handler, &i, false); |
| 962 | } |
| 963 | |
| 964 | #define COVERAGE_MAGIC 0x584d4153 |
| 965 | struct file { |
no test coverage detected