HomeSort by relevance Sort by last modified time
    Searched defs:sdev (Results 1 - 13 of 13) sorted by null

  /external/u-boot/drivers/input/
keyboard-uclass.c 10 static int keyboard_start(struct stdio_dev *sdev)
12 struct udevice *dev = sdev->priv;
21 static int keyboard_stop(struct stdio_dev *sdev)
23 struct udevice *dev = sdev->priv;
32 static int keyboard_tstc(struct stdio_dev *sdev)
34 struct udevice *dev = sdev->priv;
47 static int keyboard_getc(struct stdio_dev *sdev)
49 struct udevice *dev = sdev->priv;
65 struct stdio_dev *sdev = &priv->sdev; local
    [all...]
cros_ec_keyb.c 185 struct stdio_dev *sdev = &uc_priv->sdev; local
213 strcpy(sdev->name, "cros-ec-keyb");
216 return input_stdio_register(sdev);
i8042.c 313 struct stdio_dev *sdev = &uc_priv->sdev; local
325 strcpy(sdev->name, "i8042-kbd");
326 ret = input_stdio_register(sdev);
tegra-kbc.c 288 struct stdio_dev *sdev = &uc_priv->sdev; local
326 strcpy(sdev->name, "tegra-kbc");
327 ret = input_stdio_register(sdev);
  /external/u-boot/include/
keyboard.h 10 * @sdev: stdio device
14 struct stdio_dev sdev; member in struct:keyboard_priv
serial.h 167 * @sdev: stdio device attached to this uart
174 struct stdio_dev *sdev; member in struct:serial_dev_priv
video_console.h 46 * @sdev: stdio device, acting as an output sink
62 struct stdio_dev sdev; member in struct:vidconsole_priv
  /external/mesa3d/src/gallium/auxiliary/pipe-loader/
pipe_loader_sw.c 91 pipe_loader_sw_probe_init_common(struct pipe_loader_sw_device *sdev)
93 sdev->base.type = PIPE_LOADER_DEVICE_SOFTWARE;
94 sdev->base.driver_name = "swrast";
95 sdev->base.ops = &pipe_loader_sw_ops;
96 sdev->fd = -1;
99 sdev->dd = &driver_descriptors;
100 if (!sdev->dd)
103 sdev->lib = pipe_loader_find_module("swrast", PIPE_SEARCH_DIR);
104 if (!sdev->lib)
107 sdev->dd = (const struct sw_driver_descriptor *
133 struct pipe_loader_sw_device *sdev = CALLOC_STRUCT(pipe_loader_sw_device); local
165 struct pipe_loader_sw_device *sdev = CALLOC_STRUCT(pipe_loader_sw_device); local
198 struct pipe_loader_sw_device *sdev = CALLOC_STRUCT(pipe_loader_sw_device); local
243 struct pipe_loader_sw_device *sdev = CALLOC_STRUCT(pipe_loader_sw_device); local
273 MAYBE_UNUSED struct pipe_loader_sw_device *sdev = local
300 struct pipe_loader_sw_device *sdev = pipe_loader_sw_device(dev); local
    [all...]
  /external/u-boot/common/
stdio.c 143 struct stdio_dev *sdev; local
160 sdev = list_empty(&devs.list) ? NULL :
162 if (!sdev || strcmp(sdev->name, name)) {
167 *sdevp = sdev;
176 struct stdio_dev *sdev; local
182 sdev = list_entry(pos, struct stdio_dev, list);
183 if (strcmp(sdev->name, name) == 0)
184 return sdev;
199 !stdio_probe_device(name, UCLASS_VIDEO, &sdev))
    [all...]
usb_kbd.c 354 static int usb_kbd_testc(struct stdio_dev *sdev)
380 static int usb_kbd_getc(struct stdio_dev *sdev)
615 struct stdio_dev *sdev; local
618 sdev = stdio_get_by_name(DEVNAME);
619 if (!sdev) {
624 if (stdio_deregister_dev(sdev, true)) {
  /external/u-boot/drivers/video/
vidconsole-uclass.c 390 static void vidconsole_putc(struct stdio_dev *sdev, const char ch)
392 struct udevice *dev = sdev->priv;
398 static void vidconsole_puts(struct stdio_dev *sdev, const char *s)
400 struct udevice *dev = sdev->priv;
423 struct stdio_dev *sdev = &priv->sdev; local
429 snprintf(sdev->name, sizeof(sdev->name), "vidconsole%d",
432 strcpy(sdev->name, "vidconsole");
435 sdev->flags = DEV_FLAGS_OUTPUT
    [all...]
  /external/u-boot/drivers/serial/
serial-uclass.c 297 static void serial_stub_putc(struct stdio_dev *sdev, const char ch)
299 _serial_putc(sdev->priv, ch);
303 static void serial_stub_puts(struct stdio_dev *sdev, const char *str)
305 _serial_puts(sdev->priv, str);
308 static int serial_stub_getc(struct stdio_dev *sdev)
310 return _serial_getc(sdev->priv);
313 static int serial_stub_tstc(struct stdio_dev *sdev)
315 return _serial_tstc(sdev->priv);
386 struct stdio_dev sdev; local
416 memset(&sdev, '\0', sizeof(sdev))
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Include/Regs/
HisiPcieV1RegOffset.h 2588 UINT32 sdev : 5 ; member in struct:tagMeepCbdfSbdf::__anon3884
6227 UINT32 sdev : 5 ; member in struct:tagMiepCbdfSbdf::__anon4043
    [all...]

Completed in 901 milliseconds