Home | History | Annotate | Download | only in EbcDxe

Lines Matching refs:ExceptionType

273                                 processor exception specified by ExceptionType

276 ExceptionType.
277 @param ExceptionType Specifies which processor exception to hook.
282 @retval EFI_INVALID_PARAMETER ExceptionType parameter is negative or exceeds
294 IN EFI_EXCEPTION_TYPE ExceptionType
657 processor exception specified by ExceptionType
660 ExceptionType.
661 @param ExceptionType Specifies which processor exception to hook.
666 @retval EFI_INVALID_PARAMETER ExceptionType parameter is negative or exceeds
678 IN EFI_EXCEPTION_TYPE ExceptionType
681 if ((ExceptionType < 0) || (ExceptionType > MAX_EBC_EXCEPTION)) {
684 if ((mDebugExceptionCallback[ExceptionType] == NULL) && (ExceptionCallback == NULL)) {
687 if ((mDebugExceptionCallback[ExceptionType] != NULL) && (ExceptionCallback != NULL)) {
690 mDebugExceptionCallback[ExceptionType] = ExceptionCallback;
727 @param ExceptionType Specifies the processor exception detected.
737 IN EFI_EXCEPTION_TYPE ExceptionType,
745 ASSERT ((ExceptionType >= 0) && (ExceptionType <= MAX_EBC_EXCEPTION));
750 VmPtr->LastException = (UINTN) ExceptionType;
765 if (mDebugExceptionCallback[ExceptionType] != NULL) {
783 mDebugExceptionCallback[ExceptionType] (ExceptionType, SystemContext);