| 1279 | } |
| 1280 | |
| 1281 | void |
| 1282 | Init_disk(swoc::file::path const &input_file_path) |
| 1283 | { |
| 1284 | Cache cache; |
| 1285 | VolumeAllocator va; |
| 1286 | |
| 1287 | if (!OPEN_RW_FLAG) { |
| 1288 | err.note("Writing Not Enabled.. Please use --write to enable writing to disk"); |
| 1289 | return; |
| 1290 | } |
| 1291 | |
| 1292 | err = va.load(SpanFile, VolumeFile); |
| 1293 | va.allocateSpan(input_file_path); |
| 1294 | } |
| 1295 | |
| 1296 | void |
| 1297 | Get_Response(swoc::file::path const &input_file_path) |
no test coverage detected