Lines Matching refs:ca
1131 struct vis_conscopy *ca) in vgatext_polled_copy() argument
1133 vgatext_cons_copy((struct vgatext_softc *)arg, ca); in vgatext_polled_copy()
1138 vgatext_cons_cursor(struct vgatext_softc *softc, struct vis_conscursor *ca) in vgatext_cons_cursor() argument
1143 switch (ca->action) { in vgatext_cons_cursor()
1154 if (ca->col < 0 || ca->col >= TEXT_COLS || in vgatext_cons_cursor()
1155 ca->row < 0 || ca->row >= TEXT_ROWS) in vgatext_cons_cursor()
1159 softc->cursor.col = ca->col; in vgatext_cons_cursor()
1160 softc->cursor.row = ca->row; in vgatext_cons_cursor()
1162 vgatext_set_cursor(softc, ca->row, ca->col); in vgatext_cons_cursor()
1166 vgatext_get_cursor(softc, &ca->row, &ca->col); in vgatext_cons_cursor()
1175 struct vis_conscursor *ca) in vgatext_polled_cursor() argument
1177 vgatext_cons_cursor((struct vgatext_softc *)arg, ca); in vgatext_polled_cursor()