| 3245 | } |
| 3246 | |
| 3247 | void BlockMetadata::PrintDetailedMap_UnusedRange(JsonWriter& json, |
| 3248 | UINT64 offset, UINT64 size) const |
| 3249 | { |
| 3250 | json.BeginObject(true); |
| 3251 | |
| 3252 | json.WriteString(L"Offset"); |
| 3253 | json.WriteNumber(offset); |
| 3254 | |
| 3255 | json.WriteString(L"Type"); |
| 3256 | json.WriteString(L"FREE"); |
| 3257 | |
| 3258 | json.WriteString(L"Size"); |
| 3259 | json.WriteNumber(size); |
| 3260 | |
| 3261 | json.EndObject(); |
| 3262 | } |
| 3263 | |
| 3264 | void BlockMetadata::PrintDetailedMap_End(JsonWriter& json) const |
| 3265 | { |
nothing calls this directly
no test coverage detected