Searched defs:HotKey (Results 1 - 6 of 6) sorted by relevance

/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/FrameworkHiiOnUefiHiiThunk/
H A DSetupBrowser.c495 @param HotKey Defines if a single character is parsed (TRUE) and returned in KeyValue
498 @param StringBuffer On return contains the typed-in string if HotKey is FALSE.
499 @param Key The EFI_INPUT_KEY value returned if HotKey is TRUE.
506 @retval EFI_INVALID_PARAMETER One of the parameters was invalid.(StringBuffer == NULL && HotKey == FALSE).
512 IN BOOLEAN HotKey,
534 if (!HotKey) {
510 ThunkCreatePopUp( IN UINTN LinesNumber, IN BOOLEAN HotKey, IN UINTN MaximumStringSize, OUT CHAR16 *StringBuffer, OUT EFI_INPUT_KEY *Key, IN CHAR16 *FirstString, ... ) argument
/device/linaro/bootloader/edk2/MdeModulePkg/Library/CustomizedDisplayLib/
H A DCustomizedDisplayLibInternal.c556 Show all registered HotKey help strings on bottom Rows.
559 @param SetState Set HotKey or Clear HotKey
577 BROWSER_HOT_KEY *HotKey; local
592 HotKey = BROWSER_HOT_KEY_FROM_LINK (Link);
613 if (StrLen (HotKey->HelpString) > ColumnIndexWidth) {
614 BakChar = HotKey->HelpString[ColumnIndexWidth];
615 HotKey->HelpString[ColumnIndexWidth] = L'\0';
619 // Print HotKey help string on bottom Row.
622 ColumnStr = HotKey
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DriverSampleDxe/
H A DDriverSample.c1876 EFI_INPUT_KEY HotKey; local
2167 // Example of how to use BrowserEx protocol to register HotKey.
2174 HotKey.UnicodeChar = CHAR_NULL;
2175 HotKey.ScanCode = SCAN_F9;
2176 FormBrowserEx->RegisterHotKey (&HotKey, 0, 0, NULL);
2177 HotKey.ScanCode = SCAN_F10;
2178 FormBrowserEx->RegisterHotKey (&HotKey, 0, 0, NULL);
2181 // Register the default HotKey F9 and F10 again.
2183 HotKey.ScanCode = SCAN_F10;
2186 FormBrowserEx->RegisterHotKey (&HotKey, BROWSER_ACTION_SUBMI
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
H A DPresentation.c442 BROWSER_HOT_KEY *HotKey; local
448 HotKey = BROWSER_HOT_KEY_FROM_LINK (Link);
450 CopyKey = AllocateCopyPool(sizeof (BROWSER_HOT_KEY), HotKey);
452 CopyKey->KeyData = AllocateCopyPool(sizeof (EFI_INPUT_KEY), HotKey->KeyData);
454 CopyKey->HelpString = AllocateCopyPool(StrSize (HotKey->HelpString), HotKey->HelpString);
738 BROWSER_HOT_KEY *HotKey; local
743 HotKey = BROWSER_HOT_KEY_FROM_LINK (Link);
745 RemoveEntryList (&HotKey->Link);
747 FreePool (HotKey
[all...]
H A DSetup.c5842 Find the registered HotKey based on KeyData.
5847 @return The registered HotKey context. If no found, NULL will return.
5855 BROWSER_HOT_KEY *HotKey; local
5859 HotKey = BROWSER_HOT_KEY_FROM_LINK (Link);
5860 if (HotKey->KeyData->ScanCode == KeyData->ScanCode) {
5861 return HotKey;
5935 BROWSER_HOT_KEY *HotKey; local
5948 HotKey = GetHotKeyFromRegisterList (KeyData);
5951 // Unregister HotKey
5954 if (HotKey !
[all...]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
H A DFormDisplay.c1315 Find the registered HotKey based on KeyData.
1320 @return The registered HotKey context. If no found, NULL will return.
1328 BROWSER_HOT_KEY *HotKey; local
1332 HotKey = BROWSER_HOT_KEY_FROM_LINK (Link);
1334 if (HotKey->KeyData->ScanCode == KeyData->ScanCode) {
1335 return HotKey;
2575 BROWSER_HOT_KEY *HotKey; local
2616 HotKey = NULL;
3232 HotKey = NULL;
3233 HotKey
4061 EFI_INPUT_KEY HotKey; local
[all...]

Completed in 76 milliseconds