HomeSort by relevance Sort by last modified time
    Searched refs:UnicodeChar (Results 1 - 25 of 90) sorted by null

1 2 3 4

  /external/syslinux/gnu-efi/gnu-efi-3.0/lib/
console.c 77 if (Key.UnicodeChar == '\n' ||
78 Key.UnicodeChar == '\r') {
82 if (Key.UnicodeChar == '\b') {
90 if (Key.UnicodeChar >= ' ') {
92 InStr[Len] = Key.UnicodeChar;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/EdkIIGlueLib/Library/UefiLib/
Console.c 198 specified by UnicodeChar.
200 @param UnicodeChar A Unicode character.
202 @retval 0 The width if UnicodeChar could not be determined.
203 @retval 1 UnicodeChar is a narrow glyph.
204 @retval 2 UnicodeChar is a wide glyph.
210 IN CHAR16 UnicodeChar
225 if (UnicodeChar <= Item->WChar) {
232 if (UnicodeChar > Item->WChar) {
234 } else if (UnicodeChar <= mUnicodeWidthTable[Index - 1].WChar) {
238 // Index - 1 < UnicodeChar <= Index. Found
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
Vtutf8.c 31 UINT16 UnicodeChar;
47 Utf8ToUnicode (Utf8Char, ValidBytes, (CHAR16 *) &UnicodeChar);
49 UnicodeFiFoInsertOneKey (TerminalDevice, UnicodeChar);
188 @param UnicodeChar Returned unicode character.
195 OUT CHAR16 *UnicodeChar
204 *UnicodeChar = 0;
215 *UnicodeChar = (UINT16) Utf8Char.Utf8_1;
227 *UnicodeChar = (UINT16) (UnicodeByte0 | (UnicodeByte1 << 8));
240 *UnicodeChar = (UINT16) (UnicodeByte0 | (UnicodeByte1 << 8));
TerminalConIn.c 175 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {
881 Output->UnicodeChar = 0;
1030 Output->UnicodeChar = 0;
    [all...]
  /device/linaro/bootloader/edk2/Nt32Pkg/WinNtGopDxe/
WinNtGopInput.c 136 if (Key->Key.ScanCode == SCAN_NULL && Key->Key.UnicodeChar == CHAR_NULL) {
197 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {
345 (KeyData.Key.UnicodeChar >= 1) && (KeyData.Key.UnicodeChar <= 26)
348 KeyData.Key.UnicodeChar = (CHAR16)(KeyData.Key.UnicodeChar + L'a' - 1);
350 KeyData.Key.UnicodeChar = (CHAR16)(KeyData.Key.UnicodeChar + L'A' - 1);
357 if (((KeyData.Key.UnicodeChar >= L'a') && (KeyData.Key.UnicodeChar <= L'z')) ||
    [all...]
  /external/syslinux/gnu-efi/gnu-efi-3.0/apps/
t7.c 21 Print(L"ScanCode: %xh UnicodeChar: %xh\n",
22 efi_input_key.ScanCode, efi_input_key.UnicodeChar);
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Bus/Isa/Ps2KeyboardDxe/
Ps2KbdTextIn.c 107 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {
288 if (KeyData.Key.ScanCode == SCAN_NULL && KeyData.Key.UnicodeChar == CHAR_NULL) {
296 if (KeyData.Key.UnicodeChar >= L'a' && KeyData.Key.UnicodeChar <= L'z') {
297 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'a' + 1);
298 } else if (KeyData.Key.UnicodeChar >= L'A' && KeyData.Key.UnicodeChar <= L'Z') {
299 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'A' + 1);
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Isa/Ps2KeyboardDxe/
Ps2KbdTextIn.c 107 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {
288 if (KeyData.Key.ScanCode == SCAN_NULL && KeyData.Key.UnicodeChar == CHAR_NULL) {
296 if (KeyData.Key.UnicodeChar >= L'a' && KeyData.Key.UnicodeChar <= L'z') {
297 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'a' + 1);
298 } else if (KeyData.Key.UnicodeChar >= L'A' && KeyData.Key.UnicodeChar <= L'Z') {
299 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'A' + 1);
    [all...]
  /device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellDebug1CommandsLib/
EditMenuBar.c 180 if ((SCAN_CONTROL_Z < Key->UnicodeChar)
181 ||(NULL == ControlBasedMenuFunctions[Key->UnicodeChar]))
186 ControlBasedMenuFunctions[Key->UnicodeChar]();
EditInputBar.c 193 if (Key.UnicodeChar == CHAR_LINEFEED || Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
195 } else if (Key.UnicodeChar == CHAR_BACKSPACE) {
208 } else if (Key.UnicodeChar <= 127 && Key.UnicodeChar >= 32) {
212 mReturnString[Size] = Key.UnicodeChar;
  /device/linaro/bootloader/edk2/EmulatorPkg/Unix/Host/
X11GraphicsWindow.c 260 KeyData.Key.UnicodeChar = 0;
416 case XK_BackSpace: KeyData.Key.UnicodeChar = 0x0008; break;
419 case XK_Tab: KeyData.Key.UnicodeChar = 0x0009; break;
421 case XK_Linefeed: KeyData.Key.UnicodeChar = 0x000a; break;
424 case XK_Return: KeyData.Key.UnicodeChar = 0x000d; break;
426 case XK_KP_Equal : KeyData.Key.UnicodeChar = L'='; break;
427 case XK_KP_Multiply : KeyData.Key.UnicodeChar = L'*'; break;
428 case XK_KP_Add : KeyData.Key.UnicodeChar = L'+'; break;
429 case XK_KP_Separator : KeyData.Key.UnicodeChar = L'~'; break;
430 case XK_KP_Subtract : KeyData.Key.UnicodeChar = L'-'; break
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/UserIdentification/UserProfileManagerDxe/
UserProfileAdd.c 56 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
63 } else if ((Key.UnicodeChar == CHAR_NULL) ||
64 (Key.UnicodeChar == CHAR_TAB) ||
65 (Key.UnicodeChar == CHAR_LINEFEED)
69 if (Key.UnicodeChar == CHAR_BACKSPACE) {
74 Name[NameLen] = Key.UnicodeChar;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/DisplayEngineDxe/
InputHandler.c 173 switch (Key.UnicodeChar) {
223 } while (Key.UnicodeChar != CHAR_CARRIAGE_RETURN);
256 if ((StringPtr[0] == CHAR_NULL) && (Key.UnicodeChar != CHAR_BACKSPACE)) {
257 StrnCpyS (StringPtr, MaxLen, &Key.UnicodeChar, 1);
259 } else if ((GetStringWidth (StringPtr) < ((Maximum + 1) * sizeof (CHAR16))) && (Key.UnicodeChar != CHAR_BACKSPACE)) {
260 KeyPad[0] = Key.UnicodeChar;
739 Key.UnicodeChar = CHAR_NULL;
749 switch (Key.UnicodeChar) {
757 if (Key.UnicodeChar == '-') {
762 PrintCharAt (Column++, Row, Key.UnicodeChar);
    [all...]
  /device/linaro/bootloader/edk2/Vlv2TbltDevicePkg/PlatformSetupDxe/
PlatformSetupDxe.c 393 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
398 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
410 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
415 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
429 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
441 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
472 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
518 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
523 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
585 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
    [all...]
  /device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Csm/BiosThunk/KeyboardDxe/
BiosKeyboard.c     [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Drivers/Keyboard/VirtualKeyboardDxe/
VirtualKeyboard.c 454 (RegsiteredData->Key.UnicodeChar != InputData->Key.UnicodeChar)) {
712 if (KeyData.Key.UnicodeChar >= L'a' && KeyData.Key.UnicodeChar <= L'z') {
713 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'a' + 1);
714 } else if (KeyData.Key.UnicodeChar >= L'A' && KeyData.Key.UnicodeChar <= L'Z') {
715 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'A' + 1)
    [all...]
  /device/linaro/bootloader/edk2/CorebootPayloadPkg/Library/PlatformBootManagerLib/
PlatformBootManager.c 193 Enter.UnicodeChar = CHAR_CARRIAGE_RETURN;
200 F2.UnicodeChar = CHAR_NULL;
208 Down.UnicodeChar = CHAR_NULL;
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Usb/UsbKbDxe/
EfiKey.c 722 if (KeyData.Key.ScanCode == CHAR_NULL && KeyData.Key.UnicodeChar == SCAN_NULL) {
730 if (KeyData.Key.UnicodeChar >= L'a' && KeyData.Key.UnicodeChar <= L'z') {
731 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'a' + 1);
732 } else if (KeyData.Key.UnicodeChar >= L'A' && KeyData.Key.UnicodeChar <= L'Z') {
733 KeyData.Key.UnicodeChar = (CHAR16) (KeyData.Key.UnicodeChar - L'A' + 1);
784 if (KeyData.Key.ScanCode == SCAN_NULL && KeyData.Key.UnicodeChar == CHAR_NULL) {
    [all...]
  /device/linaro/bootloader/edk2/SecurityPkg/Tcg/Opal/OpalPasswordDxe/
OpalDriver.c 181 if (InputKey.UnicodeChar == CHAR_CARRIAGE_RETURN) {
188 } else if ((InputKey.UnicodeChar == CHAR_NULL) ||
189 (InputKey.UnicodeChar == CHAR_TAB) ||
190 (InputKey.UnicodeChar == CHAR_LINEFEED)
197 if (InputKey.UnicodeChar == CHAR_BACKSPACE) {
207 Unicode[InputLength] = InputKey.UnicodeChar;
300 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
302 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
327 } while ((Key.ScanCode != SCAN_ESC) && (Key.UnicodeChar != CHAR_CARRIAGE_RETURN));
329 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
    [all...]
  /external/syslinux/gpxe/src/interface/efi/
efi_console.c 234 key.UnicodeChar, key.ScanCode );
237 if ( key.UnicodeChar )
238 return key.UnicodeChar;
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/EbcDxe/EbcDebugger/
EdbSupportUI.c 269 switch (Key.UnicodeChar) {
300 if (Key.UnicodeChar >= ' ') {
318 InStr[StrPos] = Key.UnicodeChar;
487 if (Key.UnicodeChar != CHAR_BACKSPACE && !(Key.UnicodeChar == 0 && Key.ScanCode == SCAN_DELETE)) {
627 if (Key.UnicodeChar == CHAR_NULL) {
637 if (Key.UnicodeChar == CHAR_CARRIAGE_RETURN) {
644 Str[1] = Key.UnicodeChar;
  /device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Efi/Protocol/SimpleTextIn/
SimpleTextIn.h 40 CHAR16 UnicodeChar;
  /device/linaro/bootloader/edk2/IntelFrameworkPkg/Library/FrameworkUefiLib/
Console.c 195 by UnicodeChar.
197 @param UnicodeChar A Unicode character.
199 @retval 0 The width if UnicodeChar could not be determined.
200 @retval 1 UnicodeChar is a narrow glyph.
201 @retval 2 UnicodeChar is a wide glyph.
207 IN CHAR16 UnicodeChar
222 if (UnicodeChar <= Item->WChar) {
229 if (UnicodeChar > Item->WChar) {
231 } else if (UnicodeChar <= mUnicodeWidthTable[Index - 1].WChar) {
235 // Index - 1 < UnicodeChar <= Index. Found
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
SimpleTextIn.h 43 CHAR16 UnicodeChar;
  /device/linaro/bootloader/edk2/MdePkg/Library/UefiLib/
Console.c 198 by UnicodeChar.
200 @param UnicodeChar A Unicode character.
202 @retval 0 The width if UnicodeChar could not be determined.
203 @retval 1 UnicodeChar is a narrow glyph.
204 @retval 2 UnicodeChar is a wide glyph.
210 IN CHAR16 UnicodeChar
225 if (UnicodeChar <= Item->WChar) {
232 if (UnicodeChar > Item->WChar) {
234 } else if (UnicodeChar <= mUnicodeWidthTable[Index - 1].WChar) {
238 // Index - 1 < UnicodeChar <= Index. Found
    [all...]

Completed in 1017 milliseconds

1 2 3 4