Home | History | Annotate | Download | only in X64

Lines Matching refs:ExceptionType

54   @param ExceptionType  Exception type.

59 IN UINTN ExceptionType,
67 mReservedVectors[ExceptionType].OldSs = SystemContext.SystemContextX64->Ss;
68 mReservedVectors[ExceptionType].OldSp = SystemContext.SystemContextX64->Rsp;
69 mReservedVectors[ExceptionType].OldFlags = SystemContext.SystemContextX64->Rflags;
70 mReservedVectors[ExceptionType].OldCs = SystemContext.SystemContextX64->Cs;
71 mReservedVectors[ExceptionType].OldIp = SystemContext.SystemContextX64->Rip;
72 mReservedVectors[ExceptionType].ExceptionData = SystemContext.SystemContextX64->ExceptionData;
82 SystemContext.SystemContextX64->Rip = (UINTN) mReservedVectors[ExceptionType].HookAfterStubHeaderCode;
88 @param ExceptionType Exception type.
93 IN UINTN ExceptionType,
97 SystemContext.SystemContextX64->Ss = mReservedVectors[ExceptionType].OldSs;
98 SystemContext.SystemContextX64->Rsp = mReservedVectors[ExceptionType].OldSp;
99 SystemContext.SystemContextX64->Rflags = mReservedVectors[ExceptionType].OldFlags;
100 SystemContext.SystemContextX64->Cs = mReservedVectors[ExceptionType].OldCs;
101 SystemContext.SystemContextX64->Rip = mReservedVectors[ExceptionType].OldIp;
102 SystemContext.SystemContextX64->ExceptionData = mReservedVectors[ExceptionType].ExceptionData;
108 @param ExceptionType Exception type.
113 IN EFI_EXCEPTION_TYPE ExceptionType,
122 ExceptionType,
123 GetExceptionNameStr (ExceptionType),
133 if (mErrorCodeFlag & (1 << ExceptionType)) {