Lines Matching refs:ch
152 u16 ch; in efi_cout_output_string() local
156 for (;(ch = *string); string++) { in efi_cout_output_string()
157 print_unicode_in_utf8(ch); in efi_cout_output_string()
159 if (ch == '\n') { in efi_cout_output_string()
350 char ch; in efi_cin_read_key_stroke() local
362 ch = getc(); in efi_cin_read_key_stroke()
363 if (ch == cESC) { in efi_cin_read_key_stroke()
365 ch = getc(); in efi_cin_read_key_stroke()
366 switch (ch) { in efi_cin_read_key_stroke()
374 ch = ch - 'a'; in efi_cin_read_key_stroke()
377 ch = getc(); in efi_cin_read_key_stroke()
378 switch (ch) { in efi_cin_read_key_stroke()
380 pressed_key.scan_code = ch - 'A' + 1; in efi_cin_read_key_stroke()
403 } else if (ch == 0x7f) { in efi_cin_read_key_stroke()
405 ch = 0x08; in efi_cin_read_key_stroke()
407 pressed_key.unicode_char = ch; in efi_cin_read_key_stroke()