Searched refs:mutexHandle (Results 1 – 2 of 2) sorted by relevance
115 pMutex->mutexHandle = xSemaphoreCreateMutexStatic( &( pMutex->mutexStorage ) ); in mbedtls_platform_mutex_init()117 pMutex->mutexHandle = xSemaphoreCreateMutex(); in mbedtls_platform_mutex_init()120 configASSERT( pMutex->mutexHandle != NULL ); in mbedtls_platform_mutex_init()135 vSemaphoreDelete( pMutex->mutexHandle ); in mbedtls_platform_mutex_free()136 pMutex->mutexHandle = NULL; in mbedtls_platform_mutex_free()153 configASSERT( pMutex->mutexHandle != NULL ); in mbedtls_platform_mutex_lock()159 mutexStatus = xSemaphoreTake( pMutex->mutexHandle, portMAX_DELAY ); in mbedtls_platform_mutex_lock()180 configASSERT( pMutex->mutexHandle != NULL ); in mbedtls_platform_mutex_unlock()185 mutexStatus = xSemaphoreGive( pMutex->mutexHandle ); in mbedtls_platform_mutex_unlock()
44 SemaphoreHandle_t mutexHandle; member
Completed in 14 milliseconds