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

  /external/libnfc-nci/halimpl/pn54x/utils/
phNxpNciHal_utils.h 68 pthread_mutex_t concurrency_mutex; member in struct:phNxpNciHal_Monitor
100 #define CONCURRENCY_LOCK() if (phNxpNciHal_get_monitor()) pthread_mutex_lock(&phNxpNciHal_get_monitor()->concurrency_mutex)
101 #define CONCURRENCY_UNLOCK() if (phNxpNciHal_get_monitor()) pthread_mutex_unlock(&phNxpNciHal_get_monitor()->concurrency_mutex)
phNxpNciHal_utils.c 302 if (pthread_mutex_init(&nxpncihal_monitor->concurrency_mutex, NULL)
305 NXPLOG_NCIHAL_E("concurrency_mutex creation returned 0x%08x", errno);
313 pthread_mutex_destroy(&nxpncihal_monitor->concurrency_mutex);
353 pthread_mutex_destroy(&nxpncihal_monitor->concurrency_mutex);
  /packages/apps/Nfc/nxp/jni/
com_android_nfc.h 182 pthread_mutex_t concurrency_mutex; member in struct:nfc_jni_native_monitor
223 #define CONCURRENCY_LOCK() pthread_mutex_lock(&nfc_jni_get_monitor()->concurrency_mutex)
224 #define CONCURRENCY_UNLOCK() pthread_mutex_unlock(&nfc_jni_get_monitor()->concurrency_mutex)
com_android_nfc.cpp 191 if(pthread_mutex_init(&nfc_jni_native_monitor->concurrency_mutex, NULL) == -1)

Completed in 1075 milliseconds