Lines Matching refs:stdio_dev
24 struct stdio_dev { struct
31 int (*start)(struct stdio_dev *dev); /* To start the device */ argument
32 int (*stop)(struct stdio_dev *dev); /* To stop the device */ argument
37 void (*putc)(struct stdio_dev *dev, const char c); argument
39 void (*puts)(struct stdio_dev *dev, const char *s); argument
44 int (*tstc)(struct stdio_dev *dev); argument
45 int (*getc)(struct stdio_dev *dev); /* To get that char */ argument
56 extern struct stdio_dev *stdio_devices[]; argument
62 int stdio_register(struct stdio_dev *dev);
63 int stdio_register_dev(struct stdio_dev *dev, struct stdio_dev **devp);
97 int stdio_deregister_dev(struct stdio_dev *dev, int force);
99 struct stdio_dev *stdio_get_by_name(const char *name);
100 struct stdio_dev *stdio_clone(struct stdio_dev *dev);