Lines Matching refs:Keyboard
1028 * 1. The InputDevices named by the -pointer and -keyboard command line
1033 * 4. The first InputDevices that use 'keyboard' or 'kbd' and a valid mouse
1036 * will reference the 'mouse' and 'keyboard' drivers.
1047 InputInfoPtr Pointer, Keyboard;
1057 * First check if a core pointer or core keyboard have been specified
1189 /* 1. Check for the -keyboard command line option. */
1210 /* 2. ServerLayout-specified core keyboard. */
1216 /* 3. First core keyboard device. */
1226 keyboardMsg = "first core keyboard device";
1232 /* 4. First keyboard with 'keyboard' or 'kbd' as the driver. */
1243 keyboardMsg = "first keyboard device";
1250 defKbd.inp_identifier = strdup("<default keyboard>");
1254 keyboardMsg = "default keyboard configuration";
1258 /* Add the core keyboard device to the layout, and set it to Core. */
1260 Keyboard = xf86AllocateInput();
1261 if (Keyboard)
1262 foundKeyboard = configInput(Keyboard, confInput, from);
1264 Keyboard->options = xf86AddNewOption(Keyboard->options,
1266 Keyboard->options = xf86AddNewOption(Keyboard->options,
1269 Keyboard->options =
1270 xf86AddNewOption(Keyboard->options, "identifier",
1272 servlayoutp->inputs = addDevice(servlayoutp->inputs, Keyboard);
1278 xf86Msg(X_ERROR, "Cannot locate a core keyboard device.\n");
1279 xf86DeleteInput(Keyboard, 0);
1298 xf86Msg(X_DEFAULT, "The core keyboard device wasn't specified "