MCPcopy Create free account
hub / github.com/Mattiwatti/EfiGuard / PrintCodeIntegrityOptions

Function PrintCodeIntegrityOptions

Application/EfiDSEFix/src/sysinfo.cpp:24–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22};
23
24static
25VOID
26PrintCodeIntegrityOptions(
27 _In_ ULONG CodeIntegrityOptions
28 )
29{
30 for (ULONG i = 0; i < ARRAYSIZE(CodeIntegrityOptionNames); ++i)
31 {
32 const ULONG Value = 1UL << i;
33 if ((CodeIntegrityOptions & Value) != 0)
34 {
35 Printf(L"\t 0x%04lX: %ls\n", Value, CodeIntegrityOptionNames[i]);
36 }
37 }
38}
39
40NTSTATUS
41DumpSystemInformation(

Callers 1

DumpSystemInformationFunction · 0.85

Calls 1

PrintfFunction · 0.85

Tested by

no test coverage detected