Home
last modified time | relevance | path

Searched refs:QuestionValue (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
DInputHandler.c324 IN EFI_HII_VALUE *QuestionValue, in AdjustQuestionValue() argument
333 Month = QuestionValue->Value.date.Month; in AdjustQuestionValue()
334 Year = QuestionValue->Value.date.Year; in AdjustQuestionValue()
360 if (QuestionValue->Value.date.Day > Maximum) { in AdjustQuestionValue()
361 QuestionValue->Value.date.Day = Maximum; in AdjustQuestionValue()
369 if (QuestionValue->Value.date.Day > Maximum) { in AdjustQuestionValue()
370 QuestionValue->Value.date.Day = Minimum; in AdjustQuestionValue()
392 IN EFI_HII_VALUE *QuestionValue, in GetValueFromNum() argument
409 *Value = (INT64) (INT8) QuestionValue->Value.u8; in GetValueFromNum()
413 *Value = QuestionValue->Value.u8; in GetValueFromNum()
[all …]
DProcessOptions.c522 EFI_HII_VALUE *QuestionValue; in PrintFormattedNumber() local
529 QuestionValue = &Question->CurrentValue; in PrintFormattedNumber()
532 Value = (INT64) QuestionValue->Value.u64; in PrintFormattedNumber()
535 switch (QuestionValue->Type) { in PrintFormattedNumber()
537 Value = (INT64) ((INT8) QuestionValue->Value.u8); in PrintFormattedNumber()
541 Value = (INT64) ((INT16) QuestionValue->Value.u16); in PrintFormattedNumber()
545 Value = (INT64) ((INT32) QuestionValue->Value.u32); in PrintFormattedNumber()
950 EFI_HII_VALUE *QuestionValue; in ProcessOptions() local
970 QuestionValue = &Question->CurrentValue; in ProcessOptions()
1157 OneOfOption = ValueToOption (Question, QuestionValue); in ProcessOptions()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
DSetup.c1506 EFI_IFR_TYPE_VALUE *QuestionValue; in GetQuestionValue() local
1577 QuestionValue = &Question->HiiValue.Value; in GetQuestionValue()
1605 QuestionValue->date.Year = 0xff; in GetQuestionValue()
1606 QuestionValue->date.Month = 0xff; in GetQuestionValue()
1607 QuestionValue->date.Day = 0xff; in GetQuestionValue()
1609 QuestionValue->time.Hour = 0xff; in GetQuestionValue()
1610 QuestionValue->time.Minute = 0xff; in GetQuestionValue()
1611 QuestionValue->time.Second = 0xff; in GetQuestionValue()
1617 QuestionValue->date.Year = EfiTime.Year; in GetQuestionValue()
1618 QuestionValue->date.Month = EfiTime.Month; in GetQuestionValue()
[all …]