HomeSort by relevance Sort by last modified time
    Searched defs:pQueue (Results 1 - 4 of 4) sorted by null

  /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...]
  /external/opencv3/modules/videoio/src/
cap_msmf.hpp     [all...]

Completed in 343 milliseconds