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

/freebsd-current/sys/dev/usb/
H A Dusb_pf.c105 struct usb_bus *ubus; local
118 ubus = device_get_softc(devlp[i]);
119 if (ubus != NULL && ubus->ifp != NULL)
120 usbpf_clone_destroy(usbpf_cloner, ubus->ifp, 0);
159 struct usb_bus *ubus; local
161 ubus = usbpf_ifname2ubus(name);
162 if (ubus == NULL)
164 if (ubus->ifp != NULL)
177 struct usb_bus *ubus; local
225 struct usb_bus *ubus; local
247 usbpf_attach(struct usb_bus *ubus) argument
255 usbpf_detach(struct usb_bus *ubus) argument
[all...]
/freebsd-current/lib/libdevinfo/
H A Ddevinfo.c103 struct u_businfo ubus; local
119 ub_size = sizeof(ubus);
120 if (sysctlbyname("hw.bus.info", &ubus,
125 if ((ub_size != sizeof(ubus)) ||
126 (ubus.ub_version != BUS_USER_VERSION)) {
128 ubus.ub_version, BUS_USER_VERSION);
131 debug("generation count is %d", ubus.ub_generation);
136 if (ubus.ub_generation == devinfo_generation)
146 if ((error = devinfo_init_devices(ubus.ub_generation)) != 0) {
152 if ((error = devinfo_init_resources(ubus
[all...]
/freebsd-current/sys/kern/
H A Dsubr_bus.c5381 struct u_businfo ubus; local
5383 ubus.ub_version = BUS_USER_VERSION;
5384 ubus.ub_generation = bus_data_generation;
5386 return (SYSCTL_OUT(req, &ubus, sizeof(ubus)));

Completed in 196 milliseconds