Lines Matching +defs:val +defs:event
32 * ASCII or event format.
118 uchar_t key_station; /* Physical key station associated with event */
119 Firm_event event; /* Event that sent out on down */
2101 * if a function key event is not used
2143 * if a keypad key event is not used
2192 strsetwithdecimal(char *buf, uint_t val, uint_t maxdigs)
2201 while (val) {
2202 lowbit = val & 1;
2203 val = (val >> 1);
2204 *(--bp) = tab[val % hradix * 2 + lowbit];
2205 val /= hradix;
2242 /* Adjust event id address for multiple keyboard/workstation support */
2297 ke->event = *fe;
2323 ke->event.value = 0;
2324 kbdqueueevent(kbdd, &ke->event);
2400 * Pass a VUID "firm event" up the stream, if you can.
2419 "kbdqueueevent: Can't allocate block for event");