Lines Matching refs:OptionCount
963 UINTN OptionCount; member
997 for (Index = 0; Index < Param->OptionCount; Index++) { in BmCollectLoadOptions()
1003 Param->OptionCount * sizeof (EFI_BOOT_MANAGER_LOAD_OPTION), in BmCollectLoadOptions()
1004 (Param->OptionCount + 1) * sizeof (EFI_BOOT_MANAGER_LOAD_OPTION), in BmCollectLoadOptions()
1008 …CopyMem (&Param->Options[Index + 1], &Param->Options[Index], (Param->OptionCount - Index) * sizeof… in BmCollectLoadOptions()
1010 Param->OptionCount++; in BmCollectLoadOptions()
1030 OUT UINTN *OptionCount, in EfiBootManagerGetLoadOptions() argument
1044 *OptionCount = 0; in EfiBootManagerGetLoadOptions()
1056 *OptionCount = OptionOrderSize / sizeof (UINT16); in EfiBootManagerGetLoadOptions()
1058 Options = AllocatePool (*OptionCount * sizeof (EFI_BOOT_MANAGER_LOAD_OPTION)); in EfiBootManagerGetLoadOptions()
1062 for (Index = 0; Index < *OptionCount; Index++) { in EfiBootManagerGetLoadOptions()
1080 if (OptionIndex < *OptionCount) { in EfiBootManagerGetLoadOptions()
1081 …Options = ReallocatePool (*OptionCount * sizeof (EFI_BOOT_MANAGER_LOAD_OPTION), OptionIndex * size… in EfiBootManagerGetLoadOptions()
1083 *OptionCount = OptionIndex; in EfiBootManagerGetLoadOptions()
1089 Param.OptionCount = 0; in EfiBootManagerGetLoadOptions()
1094 *OptionCount = Param.OptionCount; in EfiBootManagerGetLoadOptions()
1148 IN UINTN OptionCount in EfiBootManagerFreeLoadOptions() argument
1157 for (Index = 0;Index < OptionCount; Index++) { in EfiBootManagerFreeLoadOptions()