Lines Matching refs:character
171 static int __textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRc… in __textui_putchar_window() argument
178 vline->chars[vline->index].c = character; in __textui_putchar_window()
208 int textui_putchar_window(struct textui_window_t *window, uint16_t character, uint32_t FRcolor, uin… in textui_putchar_window() argument
210 if (unlikely(character == '\0')) in textui_putchar_window()
217 c_uart_send(COM1, character); in textui_putchar_window()
218 if (unlikely(character == '\n')) in textui_putchar_window()
227 else if (character == '\t') // 输出制表符 in textui_putchar_window()
236 else if (character == '\b') // 退格 in textui_putchar_window()
274 __textui_putchar_window(window, character, FRcolor, BKcolor); in textui_putchar_window()
290 int textui_putchar(uint16_t character, uint32_t FRcolor, uint32_t BKcolor) in textui_putchar() argument
293 return textui_putchar_window(__private_info.default_window, character, FRcolor, BKcolor); in textui_putchar()