Lines Matching refs:xReturn
235 BaseType_t xReturn = pdFAIL; in xTimerCreateTimerTask() local
262 xReturn = pdPASS; in xTimerCreateTimerTask()
267 xReturn = xTaskCreate( prvTimerTask, in xTimerCreateTimerTask()
281 configASSERT( xReturn ); in xTimerCreateTimerTask()
282 return xReturn; in xTimerCreateTimerTask()
392 BaseType_t xReturn = pdFAIL; in xTimerGenericCommand() local
410 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerGenericCommand()
414 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, tmrNO_DELAY ); in xTimerGenericCommand()
419 … xReturn = xQueueSendToBackFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerGenericCommand()
422 traceTIMER_COMMAND_SEND( xTimer, xCommandID, xOptionalValue, xReturn ); in xTimerGenericCommand()
429 return xReturn; in xTimerGenericCommand()
475 BaseType_t xReturn; in xTimerGetReloadMode() local
483 xReturn = pdFALSE; in xTimerGetReloadMode()
488 xReturn = pdTRUE; in xTimerGetReloadMode()
493 return xReturn; in xTimerGetReloadMode()
505 TickType_t xReturn; in xTimerGetExpiryTime() local
508 xReturn = listGET_LIST_ITEM_VALUE( &( pxTimer->xTimerListItem ) ); in xTimerGetExpiryTime()
509 return xReturn; in xTimerGetExpiryTime()
517 BaseType_t xReturn; in xTimerGetStaticBuffer() local
525 xReturn = pdTRUE; in xTimerGetStaticBuffer()
529 xReturn = pdFALSE; in xTimerGetStaticBuffer()
532 return xReturn; in xTimerGetStaticBuffer()
1008 BaseType_t xReturn; in xTimerIsTimerActive() local
1018 xReturn = pdFALSE; in xTimerIsTimerActive()
1022 xReturn = pdTRUE; in xTimerIsTimerActive()
1027 return xReturn; in xTimerIsTimerActive()
1071 BaseType_t xReturn; in xTimerPendFunctionCallFromISR() local
1080 xReturn = xQueueSendFromISR( xTimerQueue, &xMessage, pxHigherPriorityTaskWoken ); in xTimerPendFunctionCallFromISR()
1082 tracePEND_FUNC_CALL_FROM_ISR( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); in xTimerPendFunctionCallFromISR()
1084 return xReturn; in xTimerPendFunctionCallFromISR()
1098 BaseType_t xReturn; in xTimerPendFunctionCall() local
1112 xReturn = xQueueSendToBack( xTimerQueue, &xMessage, xTicksToWait ); in xTimerPendFunctionCall()
1114 tracePEND_FUNC_CALL( xFunctionToPend, pvParameter1, ulParameter2, xReturn ); in xTimerPendFunctionCall()
1116 return xReturn; in xTimerPendFunctionCall()