Home | History | Annotate | Download | only in HiiDatabaseDxe

Lines Matching refs:DefaultValueArray

1144   IFR_DEFAULT_DATA       *DefaultValueArray; 

1150 DefaultValueArray = BASE_CR (Link, IFR_DEFAULT_DATA, Entry);
1151 if (DefaultValueArray->DefaultId == DefaultValueData->DefaultId) {
1156 if ((DefaultValueData->Type > DefaultValueArray->Type) || (DefaultValueData->Type == DefaultValueArray->Type && DefaultValueData->Type == DefaultValueFromOtherDefault)) {
1160 CopyMem (&DefaultValueArray->Value, &DefaultValueData->Value, sizeof (EFI_IFR_TYPE_VALUE));
1161 DefaultValueArray->Type = DefaultValueData->Type;
1162 DefaultValueArray->Cleaned = DefaultValueData->Cleaned;
1171 DefaultValueArray = AllocateZeroPool (sizeof (IFR_DEFAULT_DATA));
1172 ASSERT (DefaultValueArray != NULL);
1173 CopyMem (DefaultValueArray, DefaultValueData, sizeof (IFR_DEFAULT_DATA));
1174 InsertTailList (Link, &DefaultValueArray->Entry);