Home
last modified time | relevance | path

Searched refs:pMutex (Results 1 – 5 of 5) sorted by relevance

/FreeRTOS-Plus/Test/FreeRTOS-Cellular-Interface/Integration/
A Dcellular_platform.c82 configASSERT( pMutex != NULL ); in prIotMutexTimedLock()
84 LogDebug( ( "Locking mutex %p.", pMutex ) ); in prIotMutexTimedLock()
87 if( pMutex->recursive == pdTRUE ) in prIotMutexTimedLock()
196 configASSERT( pMutex != NULL ); in PlatformMutex_Destroy()
203 void PlatformMutex_Lock( PlatformMutex_t * pMutex ) in PlatformMutex_Lock() argument
205 prIotMutexTimedLock( pMutex, portMAX_DELAY ); in PlatformMutex_Lock()
212 return prIotMutexTimedLock( pMutex, 0 ); in PlatformMutex_TryLock()
217 void PlatformMutex_Unlock( PlatformMutex_t * pMutex ) in PlatformMutex_Unlock() argument
219 configASSERT( pMutex != NULL ); in PlatformMutex_Unlock()
221 LogDebug( ( "Unlocking mutex %p.", pMutex ) ); in PlatformMutex_Unlock()
[all …]
A Dcellular_platform.h106 void PlatformMutex_Destroy( PlatformMutex_t * pMutex );
107 void PlatformMutex_Lock( PlatformMutex_t * pMutex );
108 bool PlatformMutex_TryLock( PlatformMutex_t * pMutex );
109 void PlatformMutex_Unlock( PlatformMutex_t * pMutex );
/FreeRTOS-Plus/Demo/FreeRTOS_Cellular_Interface_Windows_Simulator/Common/
A Dcellular_platform.c82 configASSERT( pMutex != NULL ); in prIotMutexTimedLock()
84 LogDebug( ( "Locking mutex %p.", pMutex ) ); in prIotMutexTimedLock()
87 if( pMutex->recursive == pdTRUE ) in prIotMutexTimedLock()
196 configASSERT( pMutex != NULL ); in PlatformMutex_Destroy()
203 void PlatformMutex_Lock( PlatformMutex_t * pMutex ) in PlatformMutex_Lock() argument
205 prIotMutexTimedLock( pMutex, portMAX_DELAY ); in PlatformMutex_Lock()
212 return prIotMutexTimedLock( pMutex, 0 ); in PlatformMutex_TryLock()
217 void PlatformMutex_Unlock( PlatformMutex_t * pMutex ) in PlatformMutex_Unlock() argument
219 configASSERT( pMutex != NULL ); in PlatformMutex_Unlock()
221 LogDebug( ( "Unlocking mutex %p.", pMutex ) ); in PlatformMutex_Unlock()
[all …]
A Dcellular_platform.h115 void PlatformMutex_Destroy( PlatformMutex_t * pMutex );
116 void PlatformMutex_Lock( PlatformMutex_t * pMutex );
117 bool PlatformMutex_TryLock( PlatformMutex_t * pMutex );
118 void PlatformMutex_Unlock( PlatformMutex_t * pMutex );
/FreeRTOS-Plus/VisualStudio_StaticProjects/MbedTLS/
A Dmbedtls_freertos_port.c108 configASSERT( pMutex != NULL ); in mbedtls_platform_mutex_init()
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()
152 configASSERT( pMutex != NULL ); in mbedtls_platform_mutex_lock()
153 configASSERT( pMutex->mutexHandle != NULL ); in mbedtls_platform_mutex_lock()
179 configASSERT( pMutex != NULL ); in mbedtls_platform_mutex_unlock()
180 configASSERT( pMutex->mutexHandle != NULL ); in mbedtls_platform_mutex_unlock()
[all …]

Completed in 16 milliseconds