HomeSort by: relevance | last modified time | path
    Searched defs:consdev (Results 1 - 15 of 15) sorted by relevancy

  /src/sys/arch/bebox/stand/boot/
cons.h 41 struct consdev { struct
45 void (*cn_probe) /* probe hardware and fill in consdev info */
46 (struct consdev *);
48 (struct consdev *);
  /src/sys/arch/cobalt/stand/boot/
cons.h 41 struct consdev { struct
45 void (*cn_probe) /* probe hardware and fill in consdev info */
46 (struct consdev *);
48 (struct consdev *);
  /src/sys/arch/landisk/stand/boot/
cons.c 45 static int consdev = CONSDEV_BIOSCONS; variable in typeref:typename:int
75 consdev = dev;
84 switch (consdev) {
98 switch (consdev) {
117 switch (consdev) {
  /src/sys/arch/mmeye/stand/boot/
cons.h 79 struct consdev { struct
83 void (*cn_probe) /* probe hardware and fill in consdev info */
84 (struct consdev *);
86 (struct consdev *);
  /src/sys/arch/prep/stand/boot/
cons.h 41 struct consdev { struct
45 void (*cn_probe) /* probe hardware and fill in consdev info */
46 (struct consdev *);
48 (struct consdev *);
  /src/sys/arch/rs6000/stand/boot/
cons.h 41 struct consdev { struct
45 void (*cn_probe) /* probe hardware and fill in consdev info */
46 (struct consdev *);
48 (struct consdev *);
  /src/sys/arch/sgimips/sgimips/
console.c 69 extern struct consdev scn_cn;
70 extern struct consdev zs_cn;
87 const char *consdev; local in function:consinit
90 consdev = arcbios_GetEnvironmentVariable("ConsoleOut");
92 if (consdev == NULL) {
99 if (scn_serial_init(consdev))
106 if (gio_video_init(consdev) || zs_serial_init(consdev))
111 if (mace_serial_init(consdev))
140 scn_serial_init(const char *consdev)
    [all...]
  /src/sys/arch/sgimips/stand/common/
iris_cons.h 32 struct consdev { struct
36 void (*cn_probe) /* probe hardware and fill in consdev info */
37 (struct consdev *);
39 (struct consdev *);
  /src/sys/lib/libsa/
bootcfg.h 47 char *consdev; /* Console device */ member in struct:bootcfg_def
  /src/sys/dev/
cons.h 46 struct consdev { struct
47 void (*cn_probe) /* probe hardware and fill in consdev info */
48 (struct consdev *);
50 (struct consdev *);
76 extern struct consdev constab[];
77 extern struct consdev *cn_tab;
79 void cn_set_tab(struct consdev *);
90 void nullcnprobe(struct consdev *);
91 void nullcninit(struct consdev *);
96 #define dev_type_cnprobe(n) void n(struct consdev *)
    [all...]
  /src/sys/arch/sgimips/mace/
macekbc.c 120 const char *consdev; local in function:macekbc_attach
157 consdev = arcbios_GetEnvironmentVariable("ConsoleIn");
158 if (consdev != NULL && strcmp(consdev, "keyboard()") == 0)
  /src/sys/dev/ic/
z8530sc.h 175 struct consdev;
179 /* `consdev' is only valid if ZS_HWFLAG_USE_CONSDEV is set */
180 struct consdev *consdev; member in struct:zsc_attach_args
193 #define ZS_HWFLAG_USE_CONSDEV 32 /* Use console ops from `consdev' */
  /src/sys/arch/sgimips/dev/
zs.c 117 static void zscnprobe (struct consdev *);
118 static void zscninit (struct consdev *);
128 struct consdev zs_cn = {
269 zsc_args.consdev = NULL;
293 zsc_args.consdev = &zs_cn;
735 zscnprobe(struct consdev *cn)
740 zscninit(struct consdev *cn)
743 const char* consdev; local in function:zscninit
745 if ((consdev = arcbios_GetEnvironmentVariable("ConsoleOut")) == NULL)
748 if (strlen(consdev) != 9 |
    [all...]
crmfb.c 255 const char *consdev; local in function:crmfb_attach
406 consdev = arcbios_GetEnvironmentVariable("ConsoleOut");
407 if (consdev != NULL && strcmp(consdev, "video()") == 0) {
  /src/sys/kern/
init_sysctl.c 382 CTLTYPE_STRUCT, "consdev",
1509 * sysctl helper routine for kern.consdev, dependent on the current
1516 dev_t consdev; local in function:sysctl_consdev
1521 consdev = cn_tab->cn_dev;
1523 consdev = NODEV;
1526 case sizeof(consdev):
1527 node.sysctl_data = &consdev;
1528 node.sysctl_size = sizeof(consdev);
1531 oconsdev = (uint32_t)consdev;

Completed in 64 milliseconds