Home
last modified time | relevance | path

Searched refs:newkbmap (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/sbin/wsconsctl/
H A Dmap_parse.y60 struct wskbd_map_data newkbmap; /* used in util.c */ variable
110 newkbmap.maplen = 0;
111 newkbmap.map = mapdata;
128 newkbmap.map[dst] = kbmap.map[src];
129 if (dst >= newkbmap.maplen)
130 newkbmap.maplen = dst + 1;
137 if ($2 >= newkbmap.maplen)
138 newkbmap.maplen = $2 + 1;
H A Dutil.c48 extern struct wskbd_map_data newkbmap; /* from map_parse.y */
406 if (newkbmap.maplen < kbmap.maplen) in rd_field()
407 newkbmap.maplen = kbmap.maplen; in rd_field()
409 mp = newkbmap.map + i; in rd_field()
418 kbmap.maplen = newkbmap.maplen; in rd_field()
419 bcopy(newkbmap.map, kbmap.map, in rd_field()