Searched refs:keyboard (Results 1 - 25 of 29) sorted by relevance

12

/freebsd-13-stable/contrib/ntp/lib/isc/win32/include/isc/
H A Dkeyboard.h18 /* $Id: keyboard.h,v 1.6 2007/06/19 23:47:20 tbox Exp $ */
34 isc_keyboard_open(isc_keyboard_t *keyboard);
37 isc_keyboard_close(isc_keyboard_t *keyboard, unsigned int sleepseconds);
40 isc_keyboard_getchar(isc_keyboard_t *keyboard, unsigned char *cp);
43 isc_keyboard_canceled(isc_keyboard_t *keyboard);
/freebsd-13-stable/contrib/ntp/lib/isc/win32/
H A Dkeyboard.c18 /* $Id: keyboard.c,v 1.7 2007/06/19 23:47:19 tbox Exp $ */
34 #include <isc/keyboard.h>
38 isc_keyboard_open(isc_keyboard_t *keyboard) { argument
41 REQUIRE(keyboard != NULL);
47 keyboard->fd = fd;
49 keyboard->result = ISC_R_SUCCESS;
55 isc_keyboard_close(isc_keyboard_t *keyboard, unsigned int sleeptime) { argument
56 REQUIRE(keyboard != NULL);
58 if (sleeptime > 0 && keyboard->result != ISC_R_CANCELED)
61 keyboard
67 isc_keyboard_getchar(isc_keyboard_t *keyboard, unsigned char *cp) argument
86 isc_keyboard_canceled(isc_keyboard_t *keyboard) argument
[all...]
H A Dlibisc.mak148 -@erase "$(INTDIR)\keyboard.obj"
225 "$(INTDIR)\keyboard.obj" \
372 -@erase "$(INTDIR)\keyboard.obj"
373 -@erase "$(INTDIR)\keyboard.sbr"
494 "$(INTDIR)\keyboard.sbr" \
582 "$(INTDIR)\keyboard.obj" \
859 SOURCE=.\keyboard.c
864 "$(INTDIR)\keyboard.obj" : $(SOURCE) "$(INTDIR)"
870 "$(INTDIR)\keyboard.obj" "$(INTDIR)\keyboard
[all...]
/freebsd-13-stable/contrib/ntp/lib/isc/unix/
H A Dkeyboard.c18 /* $Id: keyboard.c,v 1.13 2007/06/19 23:47:18 tbox Exp $ */
34 #include <isc/keyboard.h>
38 isc_keyboard_open(isc_keyboard_t *keyboard) { argument
43 REQUIRE(keyboard != NULL);
49 keyboard->fd = fd;
51 if (tcgetattr(fd, &keyboard->saved_mode) < 0) {
56 current_mode = keyboard->saved_mode;
72 keyboard->result = ISC_R_SUCCESS;
83 isc_keyboard_close(isc_keyboard_t *keyboard, unsigned int sleeptime) { argument
84 REQUIRE(keyboard !
98 isc_keyboard_getchar(isc_keyboard_t *keyboard, unsigned char *cp) argument
124 isc_keyboard_canceled(isc_keyboard_t *keyboard) argument
[all...]
/freebsd-13-stable/contrib/ntp/lib/isc/unix/include/isc/
H A Dkeyboard.h18 /* $Id: keyboard.h,v 1.11 2007/06/19 23:47:19 tbox Exp $ */
39 isc_keyboard_open(isc_keyboard_t *keyboard);
42 isc_keyboard_close(isc_keyboard_t *keyboard, unsigned int sleepseconds);
45 isc_keyboard_getchar(isc_keyboard_t *keyboard, unsigned char *cp);
48 isc_keyboard_canceled(isc_keyboard_t *keyboard);
/freebsd-13-stable/usr.sbin/bluetooth/bthidd/
H A Dbthid_config.h55 unsigned keyboard : 1; member in struct:hid_device
H A Dsession.c98 * Initialize virtual keyboard and mouse after both channels are established
108 if (d->keyboard) {
139 if (d->keyboard && s->srv->uinput) {
H A Dhid.c284 if (hid_device->keyboard && s->srv->uinput) {
387 if (hid_device->keyboard) {
395 "received from non-keyboard " \
517 * XXX FIXME Feed keyboard events into kernel.
525 if (hid_device->keyboard) {
530 "non-keyboard device %s. Please report",
H A Dkbd.c609 if (found && s->srv->uinput && hid_device->keyboard)
H A Dparser.y444 d->keyboard = 1;
/freebsd-13-stable/usr.bin/systat/
H A DMakefile7 SRCS= cmds.c cmdtab.c devs.c fetch.c iostat.c keyboard.c main.c sysput.c \
H A Dextern.h120 int keyboard(void);
H A Dkeyboard.c37 static const char sccsid[] = "@(#)keyboard.c 8.1 (Berkeley) 6/6/93";
56 keyboard(void) function
H A Dmain.c234 keyboard();
/freebsd-13-stable/sys/dev/kbd/
H A Dkbd.c78 * We need at least one entry each in order to initialize a keyboard
85 static keyboard_t **keyboard = &kbd_ini; variable
109 bcopy(keyboard, new_kbd, sizeof(*keyboard)*keyboards);
111 free(keyboard, M_DEVBUF);
112 keyboard = new_kbd;
123 * Low-level keyboard driver functions
124 * Keyboard subdrivers, such as the AT keyboard driver and the USB keyboard
126 * and register it to the virtual keyboard drive
[all...]
H A Dkbdreg.h35 typedef struct keyboard keyboard_t;
45 /* keyboard function table */
115 /* keyboard */
116 struct keyboard { struct
134 * The upper 16 bits are common between various keyboard devices.
328 /* functions for the keyboard driver */
341 /* functions for the keyboard client */
351 /* a back door for the console driver to tickle the keyboard driver XXX */
361 /* virtual keyboard cdev driver functions */
367 /* generic low-level keyboard function
[all...]
/freebsd-13-stable/lib/libvgl/
H A DMakefile6 SRCS= main.c simple.c bitmap.c text.c mouse.c keyboard.c
/freebsd-13-stable/stand/i386/pxeldr/
H A Dpxeldr.S53 .set MEM_BIOS_KEYBOARD,0x496 # BDA byte with keyboard bit
75 * Bit in MEM_BIOS_KEYBOARD that is set if an enhanced keyboard is present
125 * Look at the BIOS data area to see if we have an enhanced keyboard. If not,
128 testb $KEYBOARD_BIT, MEM_BIOS_KEYBOARD # keyboard present?
235 * keyboard controller to get ready (65K x ISA access time). If
237 * legacy-free and simply doesn't have a keyboard controller.
/freebsd-13-stable/libexec/rc/rc.d/
H A Dsyscons216 # set this keyboard mode for all virtual terminals
235 # Check if the kbdmux(4) is the current active keyboard
241 _sc_config="keyboard"
244 # Terminate keyboard configuration line and reset global variables.
264 # keyboard
266 if [ -n "${keyboard}" ]; then
267 syscons_setkeyboard ${keyboard}
/freebsd-13-stable/sys/isa/
H A Dsyscons_isa.c128 *sc_find_softc(struct video_adapter *adp, struct keyboard *kbd)
/freebsd-13-stable/sys/dev/syscons/
H A Dsyscons.h176 struct keyboard;
212 struct keyboard *kbd; /* NULL if unavailable. */
305 int kbd_mode; /* keyboard I/O mode */
677 sc_softc_t *sc_find_softc(struct video_adapter *adp, struct keyboard *kbd);
/freebsd-13-stable/libexec/rc/
H A Drc.conf561 keyboard="" # keyboard device to use (default /dev/kbd0).
563 keyrate="NO" # keyboard rate to: slow, normal, fast (or NO).
/freebsd-13-stable/sys/dev/vt/
H A Dvt.h163 struct keyboard *vd_keyboard; /* (G) Keyboard. */
/freebsd-13-stable/stand/i386/cdboot/
H A Dcdboot.S482 # keyboard controller to get ready (65K x ISA access time). If
484 # legacy-free and simply doesn't have a keyboard controller.
/freebsd-13-stable/usr.sbin/kbdcontrol/
H A Dkbdcontrol.c1045 warn("setting keyboard rate");
1075 warn("unable to obtain keyboard information");
1096 warn("unable to obtain keyboard information");
1101 * The keyboard device driver won't release the keyboard by
1115 warn("unable to set keyboard");
1124 * If stdin is not associated with a keyboard, the following ioctl
1128 warn("unable to obtain keyboard information");
1138 warn("unable to release the keyboard");
1148 * If stdin is not associated with a keyboard, th
[all...]

Completed in 240 milliseconds

12