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

  /device/linaro/bootloader/edk2/UefiCpuPkg/Library/CpuExceptionHandlerLib/
SmmException.c 25 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
26 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
28 @param[in] VectorInfo Pointer to reserved vector list.
32 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
39 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
42 return InitializeCpuExceptionHandlersWorker (VectorInfo);
50 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
51 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
53 @param[in] VectorInfo Pointer to reserved vector list.
    [all...]
SecPeiCpuException.c 53 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
54 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
58 @param[in] VectorInfo Pointer to reserved vector list.
62 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
69 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
82 if (VectorInfo != NULL) {
84 Status = ReadAndVerifyVectorInfo (VectorInfo, ReservedVectorData, CPU_EXCEPTION_NUM);
113 if (VectorInfo != NULL) {
132 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
    [all...]
CpuExceptionCommon.c 191 @param[in] VectorInfo Pointer to reserved vector list.
196 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
201 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo,
206 while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {
207 if (VectorInfo->Attribute > EFI_VECTOR_HANDOFF_HOOK_AFTER) {
213 if (VectorInfo->VectorNumber < VectorCount) {
214 ReservedVector[VectorInfo->VectorNumber].Attribute = VectorInfo->Attribute;
216 VectorInfo ++;
    [all...]
DxeException.c 30 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
31 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
33 @param[in] VectorInfo Pointer to reserved vector list.
37 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
44 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
47 return InitializeCpuExceptionHandlersWorker (VectorInfo);
55 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
56 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
58 @param[in] VectorInfo Pointer to reserved vector list.
    [all...]
CpuExceptionCommon.h 130 @param[in] VectorInfo Pointer to reserved vector list.
134 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
140 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
225 @param[in] VectorInfo Pointer to reserved vector list.
230 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
235 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo,
DxeSmmCpuException.c 204 @param[in] VectorInfo Pointer to reserved vector list.
208 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
214 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
225 if (VectorInfo != NULL) {
226 Status = ReadAndVerifyVectorInfo (VectorInfo, mReservedVectors, CPU_EXCEPTION_NUM);
  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
CpuExceptionHandlerLib.h 27 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
28 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
30 @param[in] VectorInfo Pointer to reserved vector list.
34 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
41 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
49 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
50 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
52 @param[in] VectorInfo Pointer to reserved vector list.
56 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/CpuExceptionHandlerLibNull/
CpuExceptionHandlerLibNull.c 22 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
23 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
25 @param[in] VectorInfo Pointer to reserved vector list.
29 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
36 IN EFI_VECTOR_HANDOFF_INFO *VectorInfo OPTIONAL
47 If caller cannot get reserved vector list or it does not exists, set VectorInfo to NULL.
48 If VectorInfo is not NULL, the exception vectors will be initialized per vector attribute accordingly.
50 @param[in] VectorInfo Pointer to reserved vector list.
54 @retval EFI_INVALID_PARAMETER VectorInfo includes the invalid content if VectorInfo is not NULL.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/X64/
DxeLoadFunc.c 42 EFI_VECTOR_HANDOFF_INFO *VectorInfo;
56 VectorInfo = VectorHandoffInfoPpi->Info;
58 while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {
59 VectorInfo ++;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/DxeIplPeim/Ia32/
DxeLoadFunc.c 231 EFI_VECTOR_HANDOFF_INFO *VectorInfo;
344 VectorInfo = VectorHandoffInfoPpi->Info;
346 while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {
347 VectorInfo ++;
  /device/linaro/bootloader/edk2/MdeModulePkg/Core/Dxe/DxeMain/
DxeMain.c 249 EFI_VECTOR_HANDOFF_INFO *VectorInfo;
399 VectorInfo = VectorInfoList;
401 while (VectorInfo->Attribute != EFI_VECTOR_HANDOFF_LAST_ENTRY) {
402 VectorInfo ++;
405 VectorInfo = AllocateCopyPool (sizeof (EFI_VECTOR_HANDOFF_INFO) * Index, (VOID *) VectorInfoList);
406 ASSERT (VectorInfo != NULL);
407 Status = CoreInstallConfigurationTable (&gEfiVectorHandoffTableGuid, (VOID *) VectorInfo);
    [all...]
  /device/linaro/bootloader/edk2/UefiCpuPkg/CpuDxe/
CpuDxe.c 825 EFI_VECTOR_HANDOFF_INFO *VectorInfo;
827 VectorInfo = NULL;
830 VectorInfo = VectorInfoList;
832 Status = InitializeCpuInterruptHandlers (VectorInfo);

Completed in 146 milliseconds