Lines Matching refs:waitable
295 std::shared_future<void> waitable; member
463 for (auto& waitable : pendingWaitables) { in Wait() local
464 waitable.wait(); in Wait()
494 auto waitable = EnqueueVirtioGpuTask(contextId, std::move(task)); in TransferFromHost() local
498 resource->pendingWaitables.push_back(std::move(waitable)); in TransferFromHost()
528 auto waitable = EnqueueVirtioGpuTask(contextId, std::move(task)); in TransferToHost() local
532 resource->pendingWaitables.push_back(std::move(waitable)); in TransferToHost()
697 std::shared_future<void> waitable; in WaitOnEmulatedFence() local
709 waitable = fence.waitable; in WaitOnEmulatedFence()
712 auto status = waitable.wait_for(std::chrono::milliseconds(timeoutMilliseconds)); in WaitOnEmulatedFence()
749 fenceInfo.waitable = fenceInfo.signaler.get_future(); in CreateEmulatedFence()