Home | History | Annotate | Download | only in HiiDatabaseDxe

Lines Matching refs:StringInfoOut

1597   EFI_FONT_DISPLAY_INFO               *StringInfoOut;

1693 StringInfoOut = NULL;
1711 Status = HiiGetFontInfo (This, &FontHandle, (EFI_FONT_DISPLAY_INFO *) StringInfo, &StringInfoOut, NULL);
1725 FontInfo = &StringInfoOut->FontInfo;
1729 Foreground = StringInfoOut->ForegroundColor;
1730 Background = StringInfoOut->BackgroundColor;
2210 if (StringInfoOut != NULL) {
2211 FreePool (StringInfoOut);
2541 EFI_FONT_DISPLAY_INFO *StringInfoOut;
2565 StringInfoOut = NULL;
2586 Status = HiiGetFontInfo (This, &FontHandle, StringInfo, &StringInfoOut, String);
2590 ASSERT (StringInfoOut != NULL);
2591 FontInfo = &StringInfoOut->FontInfo;
2592 Foreground = StringInfoOut->ForegroundColor;
2593 Background = StringInfoOut->BackgroundColor;
2670 if (StringInfoOut != NULL) {
2671 FreePool (StringInfoOut);
2698 @param StringInfoOut Upon return, contains the matching font's information.
2703 the contents of StringInfoOut.
2721 OUT EFI_FONT_DISPLAY_INFO **StringInfoOut,
2768 if (StringInfoOut != NULL) {
2769 *StringInfoOut = AllocateCopyPool (StringInfoOutLen, SystemDefault);
2770 if (*StringInfoOut == NULL) {
2857 if (StringInfoOut != NULL) {
2859 *StringInfoOut = (EFI_FONT_DISPLAY_INFO *) AllocateZeroPool (StringInfoOutLen);
2860 if (*StringInfoOut == NULL) {
2866 CopyMem (*StringInfoOut, &InfoOut, sizeof (EFI_FONT_DISPLAY_INFO));
2867 CopyMem (&(*StringInfoOut)->FontInfo, GlobalFont->FontInfo, GlobalFont->FontInfoSize);