Lines Matching defs:intr
450 * @intr: if true, do an interruptible wait
464 signed long dma_fence_wait_timeout(struct dma_fence *fence, bool intr, signed long timeout)
478 ret = fence->ops->wait(fence, intr, timeout);
480 ret = dma_fence_default_wait(fence, intr, timeout);
717 * @intr: if true, do an interruptible wait
725 signed long dma_fence_default_wait(struct dma_fence *fence, bool intr, signed long timeout)
737 if (intr && signal_pending(current)) {
756 if (intr) {
766 if (ret > 0 && intr && signal_pending(current)) {
803 * @intr: if true, do an interruptible wait
818 signed long dma_fence_wait_any_timeout(struct dma_fence **fences, uint32_t count, bool intr, signed long timeout,
857 if (intr) {
868 if (ret > 0 && intr && signal_pending(current)) {