HelenOS sources
hc_driver 71 uspace/lib/usbhost/src/hcd.c static const hc_driver_t *hc_driver;
hc_driver 84 uspace/lib/usbhost/src/hcd.c hc_driver = driver;
hc_driver 167 uspace/lib/usbhost/src/hcd.c if (!hc_driver->irq_code_gen)
hc_driver 172 uspace/lib/usbhost/src/hcd.c ret = hc_driver->irq_code_gen(&irq_code, hcd, hw_res, &irq);
hc_driver 221 uspace/lib/usbhost/src/hcd.c if (!hc_driver->hc_add) {
hc_driver 223 uspace/lib/usbhost/src/hcd.c hc_driver->name);
hc_driver 227 uspace/lib/usbhost/src/hcd.c ret = hcd_ddf_setup_hc(device, hc_driver->hc_device_size);
hc_driver 244 uspace/lib/usbhost/src/hcd.c ret = hc_driver->hc_add(hcd, &hw_res);
hc_driver 261 uspace/lib/usbhost/src/hcd.c if (hc_driver->claim)
hc_driver 262 uspace/lib/usbhost/src/hcd.c ret = hc_driver->claim(hcd);
hc_driver 265 uspace/lib/usbhost/src/hcd.c ddf_dev_get_name(device), hc_driver->name, str_error(ret));
hc_driver 270 uspace/lib/usbhost/src/hcd.c if (hc_driver->start)
hc_driver 271 uspace/lib/usbhost/src/hcd.c ret = hc_driver->start(hcd);
hc_driver 296 uspace/lib/usbhost/src/hcd.c if (hc_driver->setup_root_hub)
hc_driver 297 uspace/lib/usbhost/src/hcd.c ret = hc_driver->setup_root_hub(hcd);
hc_driver 305 uspace/lib/usbhost/src/hcd.c hc_driver->name, ddf_dev_get_name(device));
hc_driver 312 uspace/lib/usbhost/src/hcd.c if (hc_driver->stop)
hc_driver 313 uspace/lib/usbhost/src/hcd.c hc_driver->stop(hcd);
hc_driver 316 uspace/lib/usbhost/src/hcd.c if (hc_driver->hc_remove)
hc_driver 317 uspace/lib/usbhost/src/hcd.c hc_driver->hc_remove(hcd);
hc_driver 330 uspace/lib/usbhost/src/hcd.c if (hc_driver->stop)
hc_driver 331 uspace/lib/usbhost/src/hcd.c if ((err = hc_driver->stop(hcd)))
hc_driver 336 uspace/lib/usbhost/src/hcd.c if (hc_driver->hc_remove)
hc_driver 337 uspace/lib/usbhost/src/hcd.c if ((err = hc_driver->hc_remove(hcd)))
hc_driver 352 uspace/lib/usbhost/src/hcd.c if (hc_driver->hc_gone)
hc_driver 353 uspace/lib/usbhost/src/hcd.c err = hc_driver->hc_gone(hcd);
HelenOS homepage, sources at GitHub