Lines Matching defs:Question

811   Search a Question in Form scope using its QuestionId.
813 @param Form The form which contains this Question.
814 @param QuestionId Id of this Question.
816 @retval Pointer The Question.
817 @retval NULL Specified Question not found in the form.
827 FORM_BROWSER_STATEMENT *Question;
838 Question = FORM_BROWSER_STATEMENT_FROM_LINK (Link);
840 if (Question->QuestionId == QuestionId) {
841 return Question;
852 Search a Question in Formset scope using its QuestionId.
855 @param Form The form which contains this Question.
856 @param QuestionId Id of this Question.
858 @retval Pointer The Question.
859 @retval NULL Specified Question not found in the form.
870 FORM_BROWSER_STATEMENT *Question;
875 Question = IdToQuestion2 (Form, QuestionId);
876 if (Question != NULL) {
877 return Question;
887 Question = IdToQuestion2 (Form, QuestionId);
888 if (Question != NULL) {
891 // to keep synchronous, always reload the Question Value.
893 if (Question->Storage->Type == EFI_HII_VARSTORE_EFI_VARIABLE) {
894 GetQuestionValue (FormSet, Form, Question, FALSE);
897 return Question;
2046 FORM_BROWSER_STATEMENT *Question;
2061 Question = NULL;
2117 // Base on the Question Id to get the question info.
2119 Question = IdToQuestion(FormSet, NULL, QuestionId);
2120 if (Question == NULL) {
2132 Question = IdToQuestion2 (Form, QuestionId);
2133 if (Question != NULL) {
2145 Status = GetQuestionValue(FormSet, Form, Question, FALSE);
2151 CopyMem (Value, &Question->HiiValue, sizeof (EFI_HII_VALUE));
2174 @retval EFI_NOT_FOUND The Question which referenced by a QuestionId
2192 FORM_BROWSER_STATEMENT *Question;
2241 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2242 if (Question == NULL) {
2247 Status = CompareHiiValue (&Question->HiiValue, &OpCode->Value, &Result, NULL);
2261 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2262 if (Question == NULL) {
2273 Status = CompareHiiValue (&Question->HiiValue, &Question2->HiiValue, &Result, FormSet->HiiHandle);
2286 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2287 if (Question == NULL) {
2294 if (Question->HiiValue.Value.u16 == OpCode->ValueList[Index]) {
2312 Question = IdToQuestion (FormSet, Form, OpCode->QuestionId);
2313 if (Question == NULL) {
2318 Value = &Question->HiiValue;
2490 Question = IdToQuestion (FormSet, Form, Value->Value.u16);
2491 if (Question == NULL) {
2499 Value = &Question->HiiValue;
2606 Question = IdToQuestion (FormSet, Form, Value->Value.u16);
2607 if (Question == NULL) {
2612 Value = &Question->HiiValue;