| 1156 | } |
| 1157 | |
| 1158 | void |
| 1159 | Clear_Spans() |
| 1160 | { |
| 1161 | Cache cache; |
| 1162 | |
| 1163 | if (!OPEN_RW_FLAG) { |
| 1164 | err.note("Writing Not Enabled.. Please use --write to enable writing to disk"); |
| 1165 | return; |
| 1166 | } |
| 1167 | |
| 1168 | if ((err = cache.loadSpan(SpanFile))) { |
| 1169 | for (auto *span : cache._spans) { |
| 1170 | span->clearPermanently(); |
| 1171 | } |
| 1172 | } |
| 1173 | } |
| 1174 | |
| 1175 | void |
| 1176 | Find_Stripe(swoc::file::path const &input_file_path) |
no test coverage detected