HelenOS sources

hc_driver          74 uspace/lib/usbhost/src/hcd.c static const hc_driver_t *hc_driver;
hc_driver          87 uspace/lib/usbhost/src/hcd.c 	hc_driver = driver;
hc_driver         170 uspace/lib/usbhost/src/hcd.c 	if (!hc_driver->irq_code_gen)
hc_driver         175 uspace/lib/usbhost/src/hcd.c 	ret = hc_driver->irq_code_gen(&irq_code, hcd, hw_res, &irq);
hc_driver         224 uspace/lib/usbhost/src/hcd.c 	if (!hc_driver->hc_add) {
hc_driver         226 uspace/lib/usbhost/src/hcd.c 		    hc_driver->name);
hc_driver         230 uspace/lib/usbhost/src/hcd.c 	ret = hcd_ddf_setup_hc(device, hc_driver->hc_device_size);
hc_driver         247 uspace/lib/usbhost/src/hcd.c 	ret = hc_driver->hc_add(hcd, &hw_res);
hc_driver         264 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->claim)
hc_driver         265 uspace/lib/usbhost/src/hcd.c 		ret = hc_driver->claim(hcd);
hc_driver         268 uspace/lib/usbhost/src/hcd.c 		    ddf_dev_get_name(device), hc_driver->name, str_error(ret));
hc_driver         273 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->start)
hc_driver         274 uspace/lib/usbhost/src/hcd.c 		ret = hc_driver->start(hcd);
hc_driver         299 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->setup_root_hub)
hc_driver         300 uspace/lib/usbhost/src/hcd.c 		ret = hc_driver->setup_root_hub(hcd);
hc_driver         308 uspace/lib/usbhost/src/hcd.c 	    hc_driver->name, ddf_dev_get_name(device));
hc_driver         315 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->stop)
hc_driver         316 uspace/lib/usbhost/src/hcd.c 		hc_driver->stop(hcd);
hc_driver         319 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->hc_remove)
hc_driver         320 uspace/lib/usbhost/src/hcd.c 		hc_driver->hc_remove(hcd);
hc_driver         333 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->stop)
hc_driver         334 uspace/lib/usbhost/src/hcd.c 		if ((err = hc_driver->stop(hcd)))
hc_driver         339 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->hc_remove)
hc_driver         340 uspace/lib/usbhost/src/hcd.c 		if ((err = hc_driver->hc_remove(hcd)))
hc_driver         355 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->hc_gone)
hc_driver         356 uspace/lib/usbhost/src/hcd.c 		err = hc_driver->hc_gone(hcd);
hc_driver         368 uspace/lib/usbhost/src/hcd.c 	if (hc_driver->hc_quiesce)
hc_driver         369 uspace/lib/usbhost/src/hcd.c 		err = hc_driver->hc_quiesce(hcd);
HelenOS homepage, sources at GitHub