Searched refs:ubus (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/dev/usb/
H A Dusb_pf.c99 struct usb_bus *ubus; local
112 ubus = device_get_softc(devlp[i]);
113 if (ubus != NULL && ubus->ifp != NULL)
114 usbpf_clone_destroy(usbpf_cloner, ubus->ifp);
153 struct usb_bus *ubus; local
155 ubus = usbpf_ifname2ubus(name);
156 if (ubus == NULL)
158 if (ubus->ifp != NULL)
170 struct usb_bus *ubus; local
218 struct usb_bus *ubus; local
240 usbpf_attach(struct usb_bus *ubus) argument
248 usbpf_detach(struct usb_bus *ubus) argument
[all...]
/freebsd-11-stable/lib/libdevinfo/
H A Ddevinfo.c102 struct u_businfo ubus; local
118 ub_size = sizeof(ubus);
119 if (sysctlbyname("hw.bus.info", &ubus,
124 if ((ub_size != sizeof(ubus)) ||
125 (ubus.ub_version != BUS_USER_VERSION)) {
129 debug("generation count is %d", ubus.ub_generation);
134 if (ubus.ub_generation == devinfo_generation)
144 if ((error = devinfo_init_devices(ubus.ub_generation)) != 0) {
150 if ((error = devinfo_init_resources(ubus.ub_generation)) != 0) {
157 devinfo_generation = ubus
[all...]
/freebsd-11-stable/sys/kern/
H A Dsubr_bus.c5311 struct u_businfo ubus; local
5313 ubus.ub_version = BUS_USER_VERSION;
5314 ubus.ub_generation = bus_data_generation;
5316 return (SYSCTL_OUT(req, &ubus, sizeof(ubus)));

Completed in 176 milliseconds