Home
last modified time | relevance | path

Searched refs:EventHdr (Results 1 – 2 of 2) sorted by relevance

/device/linaro/bootloader/edk2/SecurityPkg/Tcg/Tcg2Dxe/
DTcg2Dxe.c380 IN TCG_PCR_EVENT_HDR *EventHdr in DumpEvent() argument
386 DEBUG ((EFI_D_INFO, " PCRIndex - %d\n", EventHdr->PCRIndex)); in DumpEvent()
387 DEBUG ((EFI_D_INFO, " EventType - 0x%08x\n", EventHdr->EventType)); in DumpEvent()
390 DEBUG ((EFI_D_INFO, "%02x ", EventHdr->Digest.digest[Index])); in DumpEvent()
393 DEBUG ((EFI_D_INFO, " EventSize - 0x%08x\n", EventHdr->EventSize)); in DumpEvent()
394 InternalDumpHex ((UINT8 *)(EventHdr + 1), EventHdr->EventSize); in DumpEvent()
570 TCG_PCR_EVENT_HDR *EventHdr; in DumpEventLog() local
579 EventHdr = (TCG_PCR_EVENT_HDR *)(UINTN)EventLogLocation; in DumpEventLog()
580 while ((UINTN)EventHdr <= EventLogLastEntry) { in DumpEventLog()
581 DumpEvent (EventHdr); in DumpEventLog()
[all …]
/device/linaro/bootloader/edk2/SecurityPkg/Tcg/TrEEDxe/
DTrEEDxe.c394 TCG_PCR_EVENT_HDR *EventHdr; in DumpEventLog() local
401 EventHdr = (TCG_PCR_EVENT_HDR *)(UINTN)EventLogLocation; in DumpEventLog()
402 while ((UINTN)EventHdr <= EventLogLastEntry) { in DumpEventLog()
404 DEBUG ((EFI_D_INFO, " PCRIndex - %d\n", EventHdr->PCRIndex)); in DumpEventLog()
405 DEBUG ((EFI_D_INFO, " EventType - 0x%08x\n", EventHdr->EventType)); in DumpEventLog()
408 DEBUG ((EFI_D_INFO, "%02x ", EventHdr->Digest.digest[Index])); in DumpEventLog()
411 DEBUG ((EFI_D_INFO, " EventSize - 0x%08x\n", EventHdr->EventSize)); in DumpEventLog()
412 InternalDumpHex ((UINT8 *)(EventHdr + 1), EventHdr->EventSize); in DumpEventLog()
413EventHdr = (TCG_PCR_EVENT_HDR *)((UINTN)EventHdr + sizeof(TCG_PCR_EVENT_HDR) + EventHdr->EventSize… in DumpEventLog()