Searched refs:semaphore_ (Results 1 – 7 of 7) sorted by relevance
36 semaphore_ = ISemaphore::MakeShared(0); in Future()50 semaphore_->Wait(timeOut); in GetResponse()92 semaphore_->Signal(); in SetResponse()
32 semaphore_(nullptr), in SyncOperation()65 semaphore_ = std::make_unique<SemaphoreUtils>(0); in Initialize()207 if (isBlockSync_ && (semaphore_ != nullptr)) { in WaitIfNeed()209 semaphore_->WaitSemaphore(); in WaitIfNeed()215 if (isBlockSync_ && (semaphore_ != nullptr)) { in NotifyIfNeed()217 semaphore_->SendSemaphore(); in NotifyIfNeed()
182 std::unique_ptr<SemaphoreUtils> semaphore_; variable
82 std::shared_ptr<ISemaphore> semaphore_; variable
28 int res = sem_init(&semaphore_, 0, 1); in NapiAsyncCallback()37 sem_destroy(&semaphore_); in ~NapiAsyncCallback()
75 sem_t semaphore_ = {}; variable
101 static inline VkSemaphore semaphore_ = VK_NULL_HANDLE; member in vulkan::loader::VulkanLoaderUnitTest978 VkResult err = vkCreateSemaphore(device_, &semaphoreCreateInfo, nullptr, &semaphore_);995 pAcquireInfo.semaphore = semaphore_;1039 EXPECT_NE(semaphore_, VK_NULL_HANDLE);1040 presentInfo.pWaitSemaphores = &semaphore_;