| 1450 | } |
| 1451 | |
| 1452 | void FfsEngine::parseAprioriRawSection(const QByteArray & body, QString & parsed) |
| 1453 | { |
| 1454 | parsed.clear(); |
| 1455 | |
| 1456 | UINT32 count = body.size() / sizeof(EFI_GUID); |
| 1457 | if (count > 0) { |
| 1458 | for (UINT32 i = 0; i < count; i++) { |
| 1459 | const EFI_GUID* guid = (const EFI_GUID*)body.constData() + i; |
| 1460 | parsed += tr("\n%1").arg(guidToQString(*guid)); |
| 1461 | } |
| 1462 | } |
| 1463 | } |
| 1464 | |
| 1465 | UINT8 FfsEngine::parseDepexSection(const QByteArray & body, QString & parsed) |
| 1466 | { |
nothing calls this directly
no test coverage detected