HomeSort by relevance Sort by last modified time
    Searched refs:pQueue (Results 1 - 25 of 27) sorted by null

1 2

  /external/libnfc-nci/halimpl/pn54x/tml/
phDal4Nfc_messageQueueLib.c 52 ** Returns (int) value of pQueue if successful
58 phDal4Nfc_message_queue_t * pQueue;
61 pQueue = (phDal4Nfc_message_queue_t *) malloc(sizeof(phDal4Nfc_message_queue_t));
62 if (pQueue == NULL)
64 memset(pQueue, 0, sizeof(phDal4Nfc_message_queue_t));
65 if (pthread_mutex_init(&pQueue->nCriticalSectionMutex, NULL) == -1)
67 free (pQueue);
70 if (sem_init(&pQueue->nProcessSemaphore, 0, 0) == -1)
72 free (pQueue);
76 return ((intptr_t) pQueue);
    [all...]
  /external/libnfc-nxp/Linux_x86/
phDal4Nfc_messageQueueLib.c 72 phDal4Nfc_message_queue_t * pQueue;
73 pQueue = (phDal4Nfc_message_queue_t *) phOsalNfc_GetMemory(sizeof(phDal4Nfc_message_queue_t));
74 if (pQueue == NULL)
76 memset(pQueue, 0, sizeof(phDal4Nfc_message_queue_t));
77 if (pthread_mutex_init (&pQueue->nCriticalSectionMutex, NULL) == -1)
79 if (sem_init (&pQueue->nProcessSemaphore, 0, 0) == -1)
81 return ((intptr_t)pQueue);
98 phDal4Nfc_message_queue_t * pQueue;
104 pQueue = (phDal4Nfc_message_queue_t *)msqid;
105 pthread_mutex_lock(&pQueue->nCriticalSectionMutex)
    [all...]
  /external/vulkan-validation-layers/layers/
swapchain.cpp     [all...]
object_tracker.h     [all...]
device_limits.cpp 533 vkGetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue *pQueue) {
552 dev_data->device_dispatch_table->GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
    [all...]
  /frameworks/native/vulkan/libvulkan/
driver.h 122 VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue);
driver.cpp 838 VkQueue* pQueue) {
841 data.driver.GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
842 SetData(*pQueue, data);
api_gen.cpp 297 VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue);
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkDeviceDriverImpl.inl 10 void DeviceDriver::getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) const
12 m_vk.getDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
vkConcreteDeviceInterface.inl 5 virtual void getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) const;
vkVirtualDeviceInterface.inl 5 virtual void getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) const = 0;
vkNullDriverImpl.inl 370 VKAPI_ATTR void VKAPI_CALL getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue)
375 DE_UNREF(pQueue);
    [all...]
vkFunctionPointerTypes.inl 21 typedef VKAPI_ATTR void (VKAPI_CALL* GetDeviceQueueFunc) (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue);
  /external/vulkan-validation-layers/loader/
trampoline.c     [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver_gen.h 48 VKAPI_ATTR void GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue);
  /external/opencv3/modules/videoio/src/
cap_msmf.hpp     [all...]
  /external/skia/third_party/vulkan/
vulkan.h     [all...]
  /external/vulkan-validation-layers/include/vulkan/
vulkan.h     [all...]
  /frameworks/native/vulkan/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/vulkan/
vulkan.h     [all...]
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/vulkan/
vulkan.h     [all...]

Completed in 692 milliseconds

1 2