MCPcopy Create free account
hub / github.com/CloverHackyColor/CloverBootloader / PrintBootOrder

Function PrintBootOrder

rEFIt_UEFI/Platform/BootOptions.cpp:313–331  ·  view source on GitHub ↗

Prints BootOrder with DBG. */

Source from the content-addressed store, hash-verified

311
312/** Prints BootOrder with DBG. */
313VOID
314PrintBootOrder (
315 IN UINT16 BootOrder[],
316 IN UINTN BootOrderLen
317 )
318{
319 UINTN Index;
320
321
322 DBG(" %llu: ", BootOrderLen);
323 for (Index = 0; Index < BootOrderLen; Index++) {
324 if (Index > 0) {
325 DBG(", ");
326 }
327 DBG("Boot%04hX", BootOrder[Index]);
328 }
329 DBG("\n");
330 //WaitForKeyPress(L"press a key to continue\n");
331}
332
333
334/** Returns gEfiGlobalVariableGuid:BootOrder as UINT16 array and it's length (num of elements).

Callers 3

GetBootOrderFunction · 0.85
AddToBootOrderFunction · 0.85
SetBootCurrentFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected