Home
last modified time | relevance | path

Searched refs:IdtGateDescriptor (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DebugSupportDxe/Ia32/
DPlDebugSupportIa32.c29 IN IA32_IDT_GATE_DESCRIPTOR *IdtGateDescriptor in GetInterruptHandleFromIdt() argument
38 ((UINT16 *) &InterruptHandle)[0] = (UINT16) IdtGateDescriptor->Bits.OffsetLow; in GetInterruptHandleFromIdt()
39 ((UINT16 *) &InterruptHandle)[1] = (UINT16) IdtGateDescriptor->Bits.OffsetHigh; in GetInterruptHandleFromIdt()
DPlDebugSupport.c32 OUT IA32_IDT_GATE_DESCRIPTOR *IdtGateDescriptor in ReadIdtGateDescriptor() argument
41 …CopyMem ((VOID *) IdtGateDescriptor, (VOID *) &(IdtTable)[Vector], sizeof (IA32_IDT_GATE_DESCRIPTO… in ReadIdtGateDescriptor()
54 IA32_IDT_GATE_DESCRIPTOR *IdtGateDescriptor in WriteIdtGateDescriptor() argument
63 …CopyMem ((VOID *) &(IdtTable)[Vector], (VOID *) IdtGateDescriptor, sizeof (IA32_IDT_GATE_DESCRIPTO… in WriteIdtGateDescriptor()
/device/linaro/bootloader/edk2/IntelFspPkg/FspSecCore/
DSecFsp.c32 IA32_IDT_GATE_DESCRIPTOR *IdtGateDescriptor; in FspGetExceptionHandler() local
37 IdtGateDescriptor = (IA32_IDT_GATE_DESCRIPTOR *)&ExceptionHandler; in FspGetExceptionHandler()
38 Entry = (IdtGateDescriptor->Bits.OffsetHigh << 16) | IdtGateDescriptor->Bits.OffsetLow; in FspGetExceptionHandler()
40 IdtGateDescriptor->Bits.OffsetHigh = (UINT16)(Entry >> 16); in FspGetExceptionHandler()
41 IdtGateDescriptor->Bits.OffsetLow = (UINT16)Entry; in FspGetExceptionHandler()