Home | History | Annotate | Download | only in qemu

Lines Matching refs:ch

79     uint8_t ch;
440 static void console_print_text_attributes(TextAttributes *t_attrib, char ch)
468 printf(" fg: %d bg: %d ch:'%2X' '%c'\n", t_attrib->fgcol, t_attrib->bgcol, ch, ch);
472 static void vga_putcharxy(DisplayState *ds, int x, int y, int ch,
483 console_print_text_attributes(t_attrib, ch);
498 font_ptr = vgafont16 + FONT_HEIGHT * ch;
571 c->ch = ' ';
617 vga_putcharxy(s->ds, x, y2, c->ch,
649 vga_putcharxy(s->ds, x, y, c->ch, &t_attrib);
651 vga_putcharxy(s->ds, x, y, c->ch, &(c->t_attrib));
680 vga_putcharxy(s->ds, x, y, c->ch,
745 c->ch = ' ';
873 c->ch = ' ';
878 static void console_putchar(TextConsole *s, int ch)
886 switch(ch) {
925 c->ch = ch;
933 if (ch == '[') {
943 if (ch >= '0' && ch <= '9') {
946 s->esc_params[s->nb_esc_params] * 10 + ch - '0';
950 if (ch == ';')
954 s->esc_params[0], s->esc_params[1], ch, s->nb_esc_params);
957 switch(ch) {
1091 fprintf(stderr, "unhandled escape character '%c'\n", ch);
1261 console_write_ch(chardata ++, s->cells[src].ch |