Lines Matching defs:ca
1111 struct vis_conscopy *ca)
1113 vgatext_cons_copy((struct vgatext_softc *)arg, ca);
1118 vgatext_cons_cursor(struct vgatext_softc *softc, struct vis_conscursor *ca)
1123 switch (ca->action) {
1134 if (ca->col < 0 || ca->col >= TEXT_COLS ||
1135 ca->row < 0 || ca->row >= TEXT_ROWS)
1139 softc->cursor.col = ca->col;
1140 softc->cursor.row = ca->row;
1142 vgatext_set_cursor(softc, ca->row, ca->col);
1146 vgatext_get_cursor(softc, &ca->row, &ca->col);
1155 struct vis_conscursor *ca)
1157 vgatext_cons_cursor((struct vgatext_softc *)arg, ca);