HomeSort by relevance Sort by last modified time
    Searched refs:ExceptionNum (Results 1 - 5 of 5) sorted by null

  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/Ia32/
ArchDebugSupport.c 73 Retrieve exception handler from IDT table by ExceptionNum.
75 @param[in] ExceptionNum Exception number
82 IN UINTN ExceptionNum
91 return (VOID *) (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetLow) |
92 (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetHigh) << 16));
96 Set exception handler in IDT table by ExceptionNum.
98 @param[in] ExceptionNum Exception number
104 IN UINTN ExceptionNum,
114 IdtEntry[ExceptionNum].Bits.OffsetLow = (UINT16)(UINTN)ExceptionHandler;
115 IdtEntry[ExceptionNum].Bits.OffsetHigh = (UINT16)((UINTN)ExceptionHandler >> 16);
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/X64/
ArchDebugSupport.c 75 Retrieve exception handler from IDT table by ExceptionNum.
77 @param[in] ExceptionNum Exception number
84 IN UINTN ExceptionNum
93 return (VOID *) (IdtEntry[ExceptionNum].Bits.OffsetLow |
94 (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetHigh) << 16) |
95 (((UINTN)IdtEntry[ExceptionNum].Bits.OffsetUpper) << 32));
99 Set exception handler in IDT table by ExceptionNum.
101 @param[in] ExceptionNum Exception number
107 IN UINTN ExceptionNum,
117 IdtEntry[ExceptionNum].Bits.OffsetLow = (UINT16)(UINTN)ExceptionHandler;
    [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/
DebugAgent.h 412 Retrieve exception handler from IDT table by ExceptionNum.
414 @param[in] ExceptionNum Exception number
421 IN UINTN ExceptionNum
425 Set exception handler in IDT table by ExceptionNum.
427 @param[in] ExceptionNum Exception number
433 IN UINTN ExceptionNum,
DebugAgent.c     [all...]
  /device/linaro/bootloader/edk2/SourceLevelDebugPkg/Include/
TransferProtocol.h 304 UINT8 ExceptionNum;

Completed in 203 milliseconds