Searched refs:semaphore (Results 1 - 12 of 12) sorted by path

/frameworks/base/services/core/jni/
H A Dcom_android_server_am_ActivityManagerService.cpp33 #include <semaphore.h>
H A Dcom_android_server_am_BatteryStatsService.cpp37 #include <semaphore.h>
75 ALOGV("Creating semaphore...");
80 ALOGE("Error creating semaphore: %s\n", buf);
94 ALOGE("Error waiting on semaphore: %s\n", buf);
/frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
H A DInvalidateAllTest.java18 final Semaphore semaphore = new Semaphore(1);
19 semaphore.acquire();
29 semaphore.release();
34 assertTrue(semaphore.tryAcquire(2, TimeUnit.SECONDS));
40 assertTrue(semaphore.tryAcquire(2, TimeUnit.SECONDS));
/frameworks/data-binding/prebuilds/1.0-rc0/
H A Ddatabinding-studio-bundle.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/databinding/ android/databinding/Bindable.class Bindable. ...
/frameworks/native/vulkan/include/vulkan/
H A Dvk_android_native_buffer.h50 typedef VkResult (VKAPI_PTR *PFN_vkAcquireImageANDROID)(VkDevice device, VkImage image, int nativeFenceFd, VkSemaphore semaphore, VkFence fence);
64 VkSemaphore semaphore,
77 VkSemaphore semaphore,
H A Dvulkan.h2274 typedef void (VKAPI_PTR *PFN_vkDestroySemaphore)(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator);
2590 VkSemaphore semaphore,
3320 typedef VkResult (VKAPI_PTR *PFN_vkAcquireNextImageKHR)(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex);
3345 VkSemaphore semaphore,
/frameworks/native/vulkan/libvulkan/
H A Dapi_gen.cpp321 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator);
425 VKAPI_ATTR VkResult AcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex);
774 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) { argument
775 GetData(device).dispatch.DestroySemaphore(device, semaphore, pAllocator);
1190 VKAPI_ATTR VkResult AcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex) { argument
1191 return GetData(device).dispatch.AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pImageIndex);
1418 VKAPI_ATTR void vkDestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator) { argument
1419 vulkan::api::DestroySemaphore(device, semaphore, pAllocator);
1938 VKAPI_ATTR VkResult vkAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex) { argument
1939 return vulkan::api::AcquireNextImageKHR(device, swapchain, timeout, semaphore, fenc
[all...]
H A Ddriver_gen.cpp58 VKAPI_ATTR VkResult checkedAcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* pImageIndex) { argument
60 return AcquireNextImageKHR(device, swapchain, timeout, semaphore, fence, pImageIndex);
H A Dswapchain.cpp763 VkSemaphore semaphore,
813 device, swapchain.images[idx].image, fence_clone, semaphore, vk_fence);
760 AcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain_handle, uint64_t timeout, VkSemaphore semaphore, VkFence vk_fence, uint32_t* image_index) argument
H A Dswapchain.h35 VKAPI_ATTR VkResult AcquireNextImageKHR(VkDevice device, VkSwapchainKHR swapchain_handle, uint64_t timeout, VkSemaphore semaphore, VkFence fence, uint32_t* image_index);
/frameworks/native/vulkan/nulldrv/
H A Dnull_driver.cpp1042 VkSemaphore* semaphore) {
1043 *semaphore = AllocHandle<VkSemaphore>(device, HandleType::kSemaphore);
1153 void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* allocator) { argument
1039 CreateSemaphore(VkDevice device, const VkSemaphoreCreateInfo*, const VkAllocationCallbacks* , VkSemaphore* semaphore) argument
H A Dnull_driver_gen.h72 VKAPI_ATTR void DestroySemaphore(VkDevice device, VkSemaphore semaphore, const VkAllocationCallbacks* pAllocator);
172 VKAPI_ATTR VkResult AcquireImageANDROID(VkDevice device, VkImage image, int nativeFenceFd, VkSemaphore semaphore, VkFence fence);

Completed in 2057 milliseconds