• Home
  • Raw
  • Download

Lines Matching refs:HiiQuestion1

478   VAR_CHECK_HII_QUESTION_HEADER     *HiiQuestion1;  in MergeHiiQuestion()  local
501 HiiQuestion1 = HiiVariableNode->HiiQuestionArray[HiiQuestion->VarOffset]; in MergeHiiQuestion()
504 …ASSERT ((HiiQuestion1->OpCode == HiiQuestion2->OpCode) && (HiiQuestion1->StorageWidth == HiiQuesti… in MergeHiiQuestion()
506 switch (HiiQuestion1->OpCode) { in MergeHiiQuestion()
508 …DEBUG ((EFI_D_INFO, "MergeHiiQuestion - EFI_IFR_ONE_OF_OP VarOffset = 0x%04x\n", HiiQuestion1->Var… in MergeHiiQuestion()
512 NewLength = HiiQuestion1->Length; in MergeHiiQuestion()
522 Ptr1 = (UINT8 *) ((VAR_CHECK_HII_QUESTION_ONEOF *) HiiQuestion1 + 1); in MergeHiiQuestion()
523 while ((UINTN) Ptr1 < (UINTN) HiiQuestion1 + HiiQuestion1->Length) { in MergeHiiQuestion()
525 CopyMem (&OneValue1, Ptr1, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
532 Ptr1 += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
534 if ((UINTN) Ptr1 >= ((UINTN) HiiQuestion1 + HiiQuestion1->Length)) { in MergeHiiQuestion()
538 NewLength = (UINT8) (NewLength + HiiQuestion1->StorageWidth); in MergeHiiQuestion()
543 if (NewLength > HiiQuestion1->Length) { in MergeHiiQuestion()
549 CopyMem (NewHiiQuestion, HiiQuestion1, HiiQuestion1->Length); in MergeHiiQuestion()
554 Ptr = (UINT8 *) NewHiiQuestion + HiiQuestion1->Length; in MergeHiiQuestion()
561 Ptr1 = (UINT8 *) ((VAR_CHECK_HII_QUESTION_ONEOF *) HiiQuestion1 + 1); in MergeHiiQuestion()
562 while ((UINTN) Ptr1 < (UINTN) HiiQuestion1 + HiiQuestion1->Length) { in MergeHiiQuestion()
564 CopyMem (&OneValue1, Ptr1, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
571 Ptr1 += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
573 if ((UINTN) Ptr1 >= ((UINTN) HiiQuestion1 + HiiQuestion1->Length)) { in MergeHiiQuestion()
577 CopyMem (Ptr, &OneValue2, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
578 Ptr += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
583 HiiVariableNode->HiiQuestionArray[HiiQuestion1->VarOffset] = NewHiiQuestion; in MergeHiiQuestion()
584 InternalVarCheckFreePool (HiiQuestion1); in MergeHiiQuestion()
589 …I_D_INFO, "MergeHiiQuestion - EFI_IFR_CHECKBOX_OP VarOffset = 0x%04x\n", HiiQuestion1->VarOffset)); in MergeHiiQuestion()
593 …FI_D_INFO, "MergeHiiQuestion - EFI_IFR_NUMERIC_OP VarOffset = 0x%04x\n", HiiQuestion1->VarOffset)); in MergeHiiQuestion()
599 Ptr = (UINT8 *) ((VAR_CHECK_HII_QUESTION_NUMERIC *) HiiQuestion1 + 1); in MergeHiiQuestion()
600 CopyMem (&Minimum1, Ptr, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
601 Ptr += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
602 CopyMem (&Maximum1, Ptr, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
617 Ptr = (UINT8 *) ((VAR_CHECK_HII_QUESTION_NUMERIC *) HiiQuestion1 + 1); in MergeHiiQuestion()
620 CopyMem (Ptr, &Minimum1, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
625 Ptr += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
628 CopyMem (Ptr, &Maximum1, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
633 …INFO, "MergeHiiQuestion - EFI_IFR_ORDERED_LIST_OP VarOffset = 0x%04x\n", HiiQuestion1->VarOffset)); in MergeHiiQuestion()
637 NewLength = HiiQuestion1->Length; in MergeHiiQuestion()
647 Ptr1 = (UINT8 *) ((VAR_CHECK_HII_QUESTION_ORDEREDLIST *) HiiQuestion1 + 1); in MergeHiiQuestion()
648 while ((UINTN) Ptr1 < (UINTN) HiiQuestion1 + HiiQuestion1->Length) { in MergeHiiQuestion()
650 CopyMem (&OneValue1, Ptr1, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
657 Ptr1 += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
659 if ((UINTN) Ptr1 >= ((UINTN) HiiQuestion1 + HiiQuestion1->Length)) { in MergeHiiQuestion()
663 NewLength = (UINT8) (NewLength + HiiQuestion1->StorageWidth); in MergeHiiQuestion()
668 if (NewLength > HiiQuestion1->Length) { in MergeHiiQuestion()
674 CopyMem (NewHiiQuestion, HiiQuestion1, HiiQuestion1->Length); in MergeHiiQuestion()
679 Ptr = (UINT8 *) NewHiiQuestion + HiiQuestion1->Length; in MergeHiiQuestion()
686 Ptr1 = (UINT8 *) ((VAR_CHECK_HII_QUESTION_ORDEREDLIST *) HiiQuestion1 + 1); in MergeHiiQuestion()
687 while ((UINTN) Ptr1 < (UINTN) HiiQuestion1 + HiiQuestion1->Length) { in MergeHiiQuestion()
689 CopyMem (&OneValue1, Ptr1, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
696 Ptr1 += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
698 if ((UINTN) Ptr1 >= ((UINTN) HiiQuestion1 + HiiQuestion1->Length)) { in MergeHiiQuestion()
702 CopyMem (Ptr, &OneValue2, HiiQuestion1->StorageWidth); in MergeHiiQuestion()
703 Ptr += HiiQuestion1->StorageWidth; in MergeHiiQuestion()
708 HiiVariableNode->HiiQuestionArray[HiiQuestion1->VarOffset] = NewHiiQuestion; in MergeHiiQuestion()
709 InternalVarCheckFreePool (HiiQuestion1); in MergeHiiQuestion()