/src/sys/arch/usermode/dev/ |
mainbus.c | 74 struct thunkbus_attach_args taa; local in function:mainbus_attach 82 taa.taa_type = THUNKBUS_TYPE_CPU; 83 config_found(self, &taa, mainbus_print, CFARGS_NONE); 85 taa.taa_type = THUNKBUS_TYPE_TTYCONS; 86 config_found(self, &taa, mainbus_print, CFARGS_NONE); 89 taa.taa_type = THUNKBUS_TYPE_VNCFB; 90 taa.u.vnc.width = usermode_vnc_width; 91 taa.u.vnc.height = usermode_vnc_height; 92 taa.u.vnc.port = usermode_vnc_port; 93 config_found(self, &taa, mainbus_print, CFARGS_NONE) [all...] |
clock.c | 83 struct thunkbus_attach_args *taa = opaque; local in function:clock_match 85 if (taa->taa_type != THUNKBUS_TYPE_CLOCK)
|
vatapi.c | 114 struct thunkbus_attach_args *taa = opaque; local in function:vatapi_match 116 if (taa->taa_type != THUNKBUS_TYPE_VATAPI) 126 struct thunkbus_attach_args *taa = opaque; local in function:vatapi_attach 132 sc->sc_fd = thunk_open(taa->u.vdev.path, O_RDWR, 0);
|
if_veth.c | 91 struct thunkbus_attach_args *taa = opaque; local in function:veth_match 93 if (taa->taa_type != THUNKBUS_TYPE_VETH) 103 struct thunkbus_attach_args *taa = opaque; local in function:veth_attach 110 sc->sc_tapfd = thunk_open_tap(taa->u.veth.device); 113 taa->u.veth.device, thunk_geterrno()); 117 taa->u.veth.eaddr) != 0) { 119 taa->u.veth.eaddr); 124 aprint_normal(": Virtual Ethernet (device = %s)\n", taa->u.veth.device);
|
ld_thunkbus.c | 86 struct thunkbus_attach_args *taa = opaque; local in function:ld_thunkbus_match 88 if (taa->taa_type != THUNKBUS_TYPE_DISKIMAGE) 99 struct thunkbus_attach_args *taa = opaque; local in function:ld_thunkbus_attach 100 const char *path = taa->u.diskimage.path;
|
ttycons.c | 115 struct thunkbus_attach_args *taa = opaque; local in function:ttycons_match 117 if (taa->taa_type != THUNKBUS_TYPE_TTYCONS)
|
vaudio.c | 134 struct thunkbus_attach_args *taa = opaque; local in function:vaudio_match 136 if (taa->taa_type != THUNKBUS_TYPE_VAUDIO) 146 struct thunkbus_attach_args *taa = opaque; local in function:vaudio_attach 149 aprint_normal(": Virtual Audio (device = %s)\n", taa->u.vaudio.device); 155 sc->sc_audiopath = taa->u.vaudio.device;
|
cpu.c | 101 struct thunkbus_attach_args *taa = opaque; local in function:cpu_match 103 if (taa->taa_type != THUNKBUS_TYPE_CPU)
|
vncfb.c | 190 struct thunkbus_attach_args *taa = priv; local in function:vncfb_match 192 return taa->taa_type == THUNKBUS_TYPE_VNCFB; 199 struct thunkbus_attach_args *taa = priv; local in function:vncfb_attach 207 sc->sc_width = taa->u.vnc.width; 208 sc->sc_height = taa->u.vnc.height; 212 sc->sc_sockfd = thunk_vnc_open_socket(taa->u.vnc.port); 225 sc->sc_width, sc->sc_height, sc->sc_depth, taa->u.vnc.port); 236 if (thunk_rfb_open(&sc->sc_rfb, taa->u.vnc.port) != 0)
|
/src/sys/arch/evbarm/tsarm/ |
tskp.c | 129 struct tspld_attach_args *taa = aux; local in function:tskp_attach 132 sc->sc_iot = taa->ta_iot;
|
tslcd.c | 139 struct tspld_attach_args *taa = aux; local in function:tslcd_attach 142 sc->sc_iot = taa->ta_iot;
|