MCPcopy Create free account
hub / github.com/LongSoft/UEFITool / parseAprioriRawSection

Method parseAprioriRawSection

ffsengine.cpp:1452–1463  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1450}
1451
1452void 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
1465UINT8 FfsEngine::parseDepexSection(const QByteArray & body, QString & parsed)
1466{

Callers

nothing calls this directly

Calls 1

guidToQStringFunction · 0.85

Tested by

no test coverage detected