Home | History | Annotate | Download | only in qemu

Lines Matching refs:ch

46     uint8_t ch;
396 static void console_print_text_attributes(TextAttributes *t_attrib, char ch)
424 printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch);
428 static void vga_putcharxy(DisplayState *ds, int x, int y, int ch,
439 console_print_text_attributes(t_attrib, ch);
454 font_ptr = vgafont16 + FONT_HEIGHT * ch;
527 c->ch = ' ';
573 vga_putcharxy(s->ds, x, y2, c->ch,
605 vga_putcharxy(s->ds, x, y, c->ch, &t_attrib);
607 vga_putcharxy(s->ds, x, y, c->ch, &(c->t_attrib));
636 vga_putcharxy(s->ds, x, y, c->ch,
701 c->ch = ' ';
829 c->ch = ' ';
835 static void console_putchar(TextConsole *s, int ch)
843 switch(ch) {
882 c->ch = ch;
890 if (ch == '[') {
900 if (ch >= '0' && ch <= '9') {
903 s->esc_params[s->nb_esc_params] * 10 + ch - '0';
907 if (ch == ';')
911 s->esc_params[0], s->esc_params[1], ch, s->nb_esc_params);
914 switch(ch) {
1048 fprintf(stderr, "unhandled escape character '%c'\n", ch);
1210 console_write_ch(chardata ++, s->cells[src].ch |