Home
last modified time | relevance | path

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

/frameworks/base/libs/hwui/renderthread/
DVulkanManager.cpp440 VkSemaphore semaphore; in dequeueNextBuffer() local
441 VkResult err = mCreateSemaphore(mDevice, &semaphoreInfo, nullptr, &semaphore); in dequeueNextBuffer()
448 importInfo.semaphore = semaphore; in dequeueNextBuffer()
457 backendSemaphore.initVulkan(semaphore); in dequeueNextBuffer()
484 VkSemaphore semaphore) in DestroySemaphoreInfo()
485 : mDestroyFunction(destroyFunction), mDevice(device), mSemaphore(semaphore) {} in DestroySemaphoreInfo()
518 VkSemaphore semaphore; in swapBuffers() local
519 VkResult err = mCreateSemaphore(mDevice, &semaphoreInfo, nullptr, &semaphore); in swapBuffers()
523 backendSemaphore.initVulkan(semaphore); in swapBuffers()
527 new DestroySemaphoreInfo(mDestroySemaphore, mDevice, semaphore); in swapBuffers()
[all …]
/frameworks/native/vulkan/include/vulkan/
Dvk_android_native_buffer.h102 …eANDROID)(VkDevice device, VkImage image, int nativeFenceFd, VkSemaphore semaphore, VkFence fence);
127 VkSemaphore semaphore,
/frameworks/native/vulkan/libvulkan/
Dswapchain.h38 … device, VkSwapchainKHR swapchain_handle, uint64_t timeout, VkSemaphore semaphore, VkFence fence, …
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()
Dapi_gen.cpp385 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallback…
490 …kDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, …
932 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallback… in DestroySemaphore() argument
933 GetData(device).dispatch.DestroySemaphore(device, semaphore, pAllocator); in DestroySemaphore()
1352 …kDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, … in AcquireNextImageKHR() argument
1353 …return GetData(device).dispatch.AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, … in AcquireNextImageKHR()
1713 VKAPI_ATTR void vkDestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallba… in vkDestroySemaphore() argument
1714 vulkan::api::DestroySemaphore(device, semaphore, pAllocator); in vkDestroySemaphore()
2238 …kDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, … in vkAcquireNextImageKHR() argument
2239 …return vulkan::api::AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pImageIndex); in vkAcquireNextImageKHR()
/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/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/vulkan/nulldrv/
Dnull_driver.cpp1104 VkSemaphore* semaphore) { in CreateSemaphore() argument
1105 *semaphore = AllocHandle<VkSemaphore>(device, HandleType::kSemaphore); in CreateSemaphore()
1234 void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* allocato… in DestroySemaphore() argument
Dnull_driver_gen.h73 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallback…
208 …geANDROID(VkDevice device, VkImage image, int nativeFenceFd, VkSemaphore semaphore, VkFence fence);
/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.java2004 @NonNull Semaphore semaphore, in NetworkStatsProviderCallbackImpl() argument
2011 mSemaphore = semaphore; in NetworkStatsProviderCallbackImpl()