Searched refs:worker_thread (Results 1 - 8 of 8) sorted by relevance

/fuchsia/zircon/system/dev/block/usb-mass-storage/
H A Dusb-mass-storage.h53 thrd_t worker_thread; member in struct:__anon218
H A Dusb-mass-storage.c426 thrd_join(ums->worker_thread, NULL);
789 int ret = thrd_create_with_name(&ums->worker_thread, ums_worker_thread, ums, "ums_worker_thread");
/fuchsia/zircon/system/dev/nand/nand/
H A Dnand.h28 thrd_t worker_thread; member in struct:nand_device
H A Dnand.c398 thrd_join(dev->worker_thread, NULL);
481 int rc = thrd_create_with_name(&dev->worker_thread, nand_worker_thread, dev, "nand-worker");
/fuchsia/zircon/system/dev/block/sdmmc/
H A Dsdmmc.h78 thrd_t worker_thread; member in struct:sdmmc_device
H A Dsdmmc.c204 thrd_join(dev->worker_thread, NULL);
587 int rc = thrd_create_with_name(&dev->worker_thread, sdmmc_worker_thread, dev, "sdmmc-worker");
/fuchsia/zircon/system/dev/block/ramdisk/
H A Dramdisk.c64 static int worker_thread(void* arg) { function
126 // deferred_list is only accessed by the worker_thread, so a lock is not needed.
432 if (thrd_create(&ramdev->worker, worker_thread, ramdev) != thrd_success) {
/fuchsia/zircon/system/dev/block/ahci/
H A Dahci.c85 thrd_t worker_thread; member in struct:ahci_device
882 ret = thrd_create_with_name(&device->worker_thread, ahci_worker_thread, device, "ahci-worker");

Completed in 53 milliseconds