Home
last modified time | relevance | path

Searched refs:semaphore (Results 1 – 14 of 14) sorted by relevance

/frameworks/base/libs/hwui/renderthread/
DVulkanManager.cpp426 VkSemaphore semaphore; in dequeueNextBuffer() local
427 VkResult err = mCreateSemaphore(mDevice, &semaphoreInfo, nullptr, &semaphore); in dequeueNextBuffer()
436 importInfo.semaphore = semaphore; in dequeueNextBuffer()
444 mDestroySemaphore(mDevice, semaphore, nullptr); in dequeueNextBuffer()
449 backendSemaphore.initVulkan(semaphore); in dequeueNextBuffer()
481 VkSemaphore semaphore) in DestroySemaphoreInfo()
482 : mDestroyFunction(destroyFunction), mDevice(device), mSemaphore(semaphore) {} in DestroySemaphoreInfo()
508 VkSemaphore semaphore; in finishFrame() local
509 VkResult err = mCreateSemaphore(mDevice, &semaphoreInfo, nullptr, &semaphore); in finishFrame()
513 backendSemaphore.initVulkan(semaphore); in finishFrame()
[all …]
DVulkanManager.h45 typedef void(VKAPI_PTR* PFN_vkFrameBoundaryANDROID)(VkDevice device, VkSemaphore semaphore,
/frameworks/av/media/libmediatranscoding/transcoder/tests/
DVideoTrackTranscoderTests.cpp183 OneShotSemaphore semaphore; in TEST_F() local
194 [&samples, &semaphore](const std::shared_ptr<MediaSample>& sample) { in TEST_F()
201 semaphore.signal(); in TEST_F()
206 semaphore.wait(); in TEST_F()
/frameworks/native/vulkan/include/vulkan/
Dvk_android_native_buffer.h150 VkSemaphore semaphore,
184 VkSemaphore semaphore,
/frameworks/native/vulkan/libvulkan/
Dswapchain.h38 … device, VkSwapchainKHR swapchain_handle, uint64_t timeout, VkSemaphore semaphore, VkFence fence, …
Dapi_gen.cpp398 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallback…
504 …kDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, …
541 VKAPI_ATTR VkResult GetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, uint64_t* pVal…
974 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallback… in DestroySemaphore() argument
975 GetData(device).dispatch.DestroySemaphore(device, semaphore, pAllocator); in DestroySemaphore()
1398 …kDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, … in AcquireNextImageKHR() argument
1399 …return GetData(device).dispatch.AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, … in AcquireNextImageKHR()
1546 VKAPI_ATTR VkResult GetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, uint64_t* pVal… in GetSemaphoreCounterValue() argument
1547 return GetData(device).dispatch.GetSemaphoreCounterValue(device, semaphore, pValue); in GetSemaphoreCounterValue()
1807 VKAPI_ATTR void vkDestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallba… in vkDestroySemaphore() argument
[all …]
Ddriver_gen.cpp59 …kDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, … in checkedAcquireNextImageKHR() argument
61 return AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pImageIndex); in checkedAcquireNextImageKHR()
Dswapchain.cpp1441 VkSemaphore semaphore, in AcquireNextImageKHR() argument
1460 device, swapchain.images[*image_index].image, -1, semaphore, vk_fence); in AcquireNextImageKHR()
1514 device, swapchain.images[idx].image, fence_clone, semaphore, vk_fence); in AcquireNextImageKHR()
1540 pAcquireInfo->timeout, pAcquireInfo->semaphore, in AcquireNextImage2KHR()
/frameworks/native/opengl/libs/GLES2/
Dgl2ext_api.in571 GLboolean API_ENTRY(glIsSemaphoreEXT)(GLuint semaphore) {
572 CALL_GL_API_RETURN(glIsSemaphoreEXT, semaphore);
574 void API_ENTRY(glSemaphoreParameterui64vEXT)(GLuint semaphore, GLenum pname, const GLuint64 *params…
575 CALL_GL_API(glSemaphoreParameterui64vEXT, semaphore, pname, params);
577 void API_ENTRY(glGetSemaphoreParameterui64vEXT)(GLuint semaphore, GLenum pname, GLuint64 *params) {
578 CALL_GL_API(glGetSemaphoreParameterui64vEXT, semaphore, pname, params);
580 void API_ENTRY(glWaitSemaphoreEXT)(GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffer…
581 …CALL_GL_API(glWaitSemaphoreEXT, semaphore, numBufferBarriers, buffers, numTextureBarriers, texture…
583 void API_ENTRY(glSignalSemaphoreEXT)(GLuint semaphore, GLuint numBufferBarriers, const GLuint *buff…
584 …CALL_GL_API(glSignalSemaphoreEXT, semaphore, numBufferBarriers, buffers, numTextureBarriers, textu…
[all …]
/frameworks/native/vulkan/nulldrv/
Dnull_driver_gen.h73 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallback…
209 …geANDROID(VkDevice device, VkImage image, int nativeFenceFd, VkSemaphore semaphore, VkFence fence);
215 VKAPI_ATTR VkResult GetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, uint64_t* pVal…
Dnull_driver.cpp1104 VkSemaphore* semaphore) { in CreateSemaphore() argument
1105 *semaphore = AllocHandle<VkSemaphore>(device, HandleType::kSemaphore); in CreateSemaphore()
1242 void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* allocato… in DestroySemaphore() argument
1592 VkResult GetSemaphoreCounterValue(VkDevice device, VkSemaphore semaphore, uint64_t* pValue) { in GetSemaphoreCounterValue() argument
/frameworks/native/opengl/include/GLES2/
Dgl2ext.h1721 typedef GLboolean (GL_APIENTRYP PFNGLISSEMAPHOREEXTPROC) (GLuint semaphore);
1722 typedef void (GL_APIENTRYP PFNGLSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname, co…
1723 typedef void (GL_APIENTRYP PFNGLGETSEMAPHOREPARAMETERUI64VEXTPROC) (GLuint semaphore, GLenum pname,…
1724 typedef void (GL_APIENTRYP PFNGLWAITSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers, …
1725 typedef void (GL_APIENTRYP PFNGLSIGNALSEMAPHOREEXTPROC) (GLuint semaphore, GLuint numBufferBarriers…
1729 GL_APICALL GLboolean GL_APIENTRY glIsSemaphoreEXT (GLuint semaphore);
1730 GL_APICALL void GL_APIENTRY glSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, const GLu…
1731 GL_APICALL void GL_APIENTRY glGetSemaphoreParameterui64vEXT (GLuint semaphore, GLenum pname, GLuint…
1732 GL_APICALL void GL_APIENTRY glWaitSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const G…
1733 GL_APICALL void GL_APIENTRY glSignalSemaphoreEXT (GLuint semaphore, GLuint numBufferBarriers, const…
[all …]
/frameworks/native/opengl/libs/
Dentries.in438 GL_ENTRY(void, glGetSemaphoreParameterui64vEXT, GLuint semaphore, GLenum pname, GLuint64 *params)
497 GL_ENTRY(void, glImportSemaphoreFdEXT, GLuint semaphore, GLenum handleType, GLint fd)
524 GL_ENTRY(GLboolean, glIsSemaphoreEXT, GLuint semaphore)
820 GL_ENTRY(void, glSemaphoreParameterui64vEXT, GLuint semaphore, GLenum pname, const GLuint64 *params)
825 GL_ENTRY(void, glSignalSemaphoreEXT, GLuint semaphore, GLuint numBufferBarriers, const GLuint *buff…
1014 GL_ENTRY(void, glWaitSemaphoreEXT, GLuint semaphore, GLuint numBufferBarriers, const GLuint *buffer…
/frameworks/base/services/core/java/com/android/server/net/
DNetworkStatsService.java2061 @NonNull Semaphore semaphore,
2068 mSemaphore = semaphore;