Home | History | Annotate | Download | only in Ia32

Lines Matching refs:ExceptionType

53   @param ExceptionType  Exception type.

59 IN UINTN ExceptionType,
67 mReservedVectors[ExceptionType].OldFlags = SystemContext.SystemContextIa32->Eflags;
68 mReservedVectors[ExceptionType].OldCs = SystemContext.SystemContextIa32->Cs;
69 mReservedVectors[ExceptionType].OldIp = SystemContext.SystemContextIa32->Eip;
70 mReservedVectors[ExceptionType].ExceptionData = SystemContext.SystemContextIa32->ExceptionData;
80 SystemContext.SystemContextIa32->Eip = (UINTN) mReservedVectors[ExceptionType].HookAfterStubHeaderCode;
86 @param ExceptionType Exception type.
91 IN UINTN ExceptionType,
95 SystemContext.SystemContextIa32->Eflags = mReservedVectors[ExceptionType].OldFlags;
96 SystemContext.SystemContextIa32->Cs = mReservedVectors[ExceptionType].OldCs;
97 SystemContext.SystemContextIa32->Eip = mReservedVectors[ExceptionType].OldIp;
98 SystemContext.SystemContextIa32->ExceptionData = mReservedVectors[ExceptionType].ExceptionData;
104 @param ExceptionType Exception type.
109 IN EFI_EXCEPTION_TYPE ExceptionType,
118 ExceptionType,
119 GetExceptionNameStr (ExceptionType),
129 if ((mErrorCodeFlag & (1 << ExceptionType)) != 0) {