Searched refs:xMutex (Results 1 – 6 of 6) sorted by relevance
39 static SemaphoreHandle_t xMutex; variable61 xMutex = xSemaphoreCreateMutexStatic( &xMutexBuffer ); in RedOsMutexInit()63 if( xMutex == NULL ) in RedOsMutexInit()72 xMutex = xSemaphoreCreateMutex(); in RedOsMutexInit()74 if( xMutex == NULL ) in RedOsMutexInit()96 vSemaphoreDelete( xMutex ); in RedOsMutexUninit()97 xMutex = NULL; in RedOsMutexUninit()111 while( xSemaphoreTake( xMutex, portMAX_DELAY ) != pdTRUE ) in RedOsMutexAcquire()130 xSuccess = xSemaphoreGive( xMutex ); in RedOsMutexRelease()
89 lockResult = xSemaphoreTakeRecursive( ( SemaphoreHandle_t ) &pMutex->xMutex, timeout ); in prIotMutexTimedLock()93 lockResult = xSemaphoreTake( ( SemaphoreHandle_t ) &pMutex->xMutex, timeout ); in prIotMutexTimedLock()162 xSemaphore = xSemaphoreCreateRecursiveMutexStatic( &pNewMutex->xMutex ); in PlatformMutex_Create()166 xSemaphore = xSemaphoreCreateMutexStatic( &pNewMutex->xMutex ); in PlatformMutex_Create()198 vSemaphoreDelete( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Destroy()226 ( void ) xSemaphoreGiveRecursive( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Unlock()230 ( void ) xSemaphoreGive( ( SemaphoreHandle_t ) &pMutex->xMutex ); in PlatformMutex_Unlock()
100 StaticSemaphore_t xMutex; /**< FreeRTOS mutex. */ member
109 StaticSemaphore_t xMutex; /**< FreeRTOS mutex. */ member
272 static SemaphoreHandle_t xMutex = NULL; variable866 xSemaphoreTake( xMutex, portMAX_DELAY ); in sntpClient_GetTime()874 xSemaphoreGive( xMutex ); in sntpClient_GetTime()918 xSemaphoreTake( xMutex, portMAX_DELAY ); in sntpClient_SetTime()956 xSemaphoreGive( xMutex ); in sntpClient_SetTime()1338 xMutex = xSemaphoreCreateMutex(); in initializeSystemClock()1339 configASSERT( xMutex ); in initializeSystemClock()1676 xSemaphoreTake( xMutex, portMAX_DELAY ); in systemGetWallClockTime()1685 xSemaphoreGive( xMutex ); in systemGetWallClockTime()
Completed in 23 milliseconds