Searched refs:workQueue (Results 1 - 3 of 3) sorted by relevance
/third_party/FreeBSD/sys/compat/linuxkpi/common/src/ |
H A D | linux_interrupt.c | 81 bool irq_bottom_half(struct workqueue_struct *workQueue, irq_bottom_half_handler_t handler, void *data, in irq_bottom_half() argument 84 bool irq_bottom_half(struct workqueue_struct *workQueue, irq_bottom_half_handler_t handler, void *data) in irq_bottom_half() 89 if ((workQueue == NULL) || (handler == NULL)) { in irq_bottom_half() 110 if (!(queue_work(workQueue, work))) { in irq_bottom_half()
|
/third_party/FreeBSD/sys/compat/linuxkpi/common/include/linux/ |
H A D | interrupt.h | 93 extern bool irq_bottom_half(struct workqueue_struct *workQueue, irq_bottom_half_handler_t handler, void *data, 96 extern bool irq_bottom_half(struct workqueue_struct *workQueue, irq_bottom_half_handler_t handler, void *data);
|
/third_party/vk-gl-cts/scripts/android/ |
H A D | build_apk.py | 661 workQueue = list(relFilePaths) 664 workQueue = [i.replace("\\", "/") for i in workQueue] 666 while len(workQueue) > 0: 667 batchSize = min(len(workQueue), maxBatchSize) 668 items = workQueue[0:batchSize] 676 del workQueue[0:batchSize]
|
Completed in 3 milliseconds