Searched refs:ch (Results 1 – 9 of 9) sorted by relevance
| /hypervisor/debug/ |
| A D | console.c | 77 void console_putc(const char *ch) in console_putc() argument 79 (void)uart16550_puts(ch, 1U); in console_putc() 107 char ch = -1; in vuart_console_rx_chars() local 112 ch = uart16550_getc(); in vuart_console_rx_chars() 113 if (ch == -1) in vuart_console_rx_chars() 118 switch (ch) { in vuart_console_rx_chars() 120 vuart_putchar(vu, ch); in vuart_console_rx_chars() 131 printf("Unknown escaping key: '%c'\r\n", ch); in vuart_console_rx_chars() 135 if (ch == GUEST_CONSOLE_ESCAPE_KEY) { in vuart_console_rx_chars() 138 vuart_putchar(vu, ch); in vuart_console_rx_chars()
|
| A D | shell.c | 375 static void shell_handle_special_char(char ch) in shell_handle_special_char() argument 379 switch (ch) { in shell_handle_special_char() 466 static void handle_input_char(char ch) in handle_input_char() argument 476 p_shell->buffered_line[p_shell->input_line_active][p_shell->cursor_offset] = ch; in handle_input_char() 490 char ch; in shell_input_line() local 492 ch = shell_getc(); in shell_input_line() 495 switch (ch) { in shell_input_line() 524 if ((ch >= 32) && (ch <= 126)) { in shell_input_line() 525 handle_input_char(ch); in shell_input_line() 528 shell_handle_special_char(ch); in shell_input_line()
|
| /hypervisor/lib/ |
| A D | string.c | 9 static inline char hex_digit_value(char ch) in hex_digit_value() argument 12 if (('0' <= ch) && (ch <= '9')) { in hex_digit_value() 13 c = ch - '0'; in hex_digit_value() 14 } else if (('a' <= ch) && (ch <= 'f')) { in hex_digit_value() 15 c = ch - 'a' + 10; in hex_digit_value() 16 } else if (('A' <= ch) && (ch <= 'F')) { in hex_digit_value() 17 c = ch - 'A' + 10; in hex_digit_value() 73 char *strchr(char *s_arg, char ch) in strchr() argument 76 while ((*s != '\0') && (*s != ch)) { in strchr()
|
| A D | sprintf.c | 423 char ch; in do_print() local 470 ch = *fmt; in do_print() 474 if (ch == '%') { in do_print() 475 param->emit(PRINT_CMD_COPY, &ch, 1U, in do_print() 477 } else if ((ch == 'd') || (ch == 'i')) { in do_print() 489 else if (ch == 'u') { in do_print() 503 else if ((ch == 'X') || (ch == 'x')) { in do_print() 504 if (ch == 'X') { in do_print() 519 else if (ch == 's') { in do_print() 528 else if (ch == 'c') { in do_print()
|
| /hypervisor/include/debug/ |
| A D | console.h | 35 void console_putc(const char *ch);
|
| /hypervisor/release/ |
| A D | console.c | 21 void console_putc(__unused const char *ch) {} in console_putc() argument
|
| /hypervisor/include/lib/ |
| A D | rtl.h | 41 char *strchr(char *s_arg, char ch);
|
| /hypervisor/include/dm/ |
| A D | vuart.h | 114 void vuart_putchar(struct acrn_vuart *vu, char ch);
|
| /hypervisor/dm/ |
| A D | vuart.c | 64 static inline void fifo_putchar(struct vuart_fifo *fifo, char ch) in fifo_putchar() argument 66 fifo->buf[fifo->windex] = ch; in fifo_putchar() 111 void vuart_putchar(struct acrn_vuart *vu, char ch) in vuart_putchar() argument 116 fifo_putchar(&vu->rxfifo, ch); in vuart_putchar()
|
Completed in 14 milliseconds