Lines Matching refs:retVal
178 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_Init() local
184 retVal = LIN_LPUART_Init(base, linUserConfig, linCurrentState, clockSource); in LIN_Init()
192 return retVal; in LIN_Init()
203 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_Deinit() local
210 retVal = LIN_LPUART_Deinit(base); in LIN_Deinit()
218 return retVal; in LIN_Deinit()
263 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_SendFrameDataBlocking() local
269 retVal = LIN_LPUART_SendFrameDataBlocking(base, txBuff, txSize, timeoutMSec); in LIN_SendFrameDataBlocking()
272 return retVal; in LIN_SendFrameDataBlocking()
295 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_SendFrameData() local
301 retVal = LIN_LPUART_SendFrameData(base, txBuff, txSize); in LIN_SendFrameData()
304 return retVal; in LIN_SendFrameData()
321 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_GetTransmitStatus() local
327 retVal = LIN_LPUART_GetTransmitStatus(base, bytesRemaining); in LIN_GetTransmitStatus()
330 return retVal; in LIN_GetTransmitStatus()
347 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_ReceiveFrameDataBlocking() local
353 retVal = LIN_LPUART_RecvFrmDataBlocking(base, rxBuff, rxSize, timeoutMSec); in LIN_ReceiveFrameDataBlocking()
356 return retVal; in LIN_ReceiveFrameDataBlocking()
380 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_ReceiveFrameData() local
386 retVal = LIN_LPUART_RecvFrmData(base, rxBuff, rxSize); in LIN_ReceiveFrameData()
389 return retVal; in LIN_ReceiveFrameData()
402 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_AbortTransferData() local
408 retVal = LIN_LPUART_AbortTransferData(base); in LIN_AbortTransferData()
411 return retVal; in LIN_AbortTransferData()
428 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_GetReceiveStatus() local
434 retVal = LIN_LPUART_GetReceiveStatus(base, bytesRemaining); in LIN_GetReceiveStatus()
437 return retVal; in LIN_GetReceiveStatus()
449 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_GoToSleepMode() local
455 retVal = LIN_LPUART_GoToSleepMode(base); in LIN_GoToSleepMode()
458 return retVal; in LIN_GoToSleepMode()
470 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_GotoIdleState() local
476 retVal = LIN_LPUART_GotoIdleState(base); in LIN_GotoIdleState()
479 return retVal; in LIN_GotoIdleState()
490 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_SendWakeupSignal() local
496 retVal = LIN_LPUART_SendWakeupSignal(base); in LIN_SendWakeupSignal()
499 return retVal; in LIN_SendWakeupSignal()
504 lin_node_state_t retVal = LIN_NODE_STATE_UNINIT; in LIN_GetCurrentNodeState() local
513 retVal = linCurrentState->currentNodeState; in LIN_GetCurrentNodeState()
517 return retVal; in LIN_GetCurrentNodeState()
648 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_MasterSendHeader() local
654 retVal = LIN_LPUART_MasterSendHeader(base, id); in LIN_MasterSendHeader()
657 return retVal; in LIN_MasterSendHeader()
668 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_EnableIRQ() local
674 retVal = LIN_LPUART_EnableIRQ(base); in LIN_EnableIRQ()
677 return retVal; in LIN_EnableIRQ()
688 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_DisableIRQ() local
694 retVal = LIN_LPUART_DisableIRQ(base); in LIN_DisableIRQ()
697 return retVal; in LIN_DisableIRQ()
729 lin_status_t retVal = LIN_IFC_NOT_SUPPORT; in LIN_AutoBaudCapture() local
733 retVal = LIN_LPUART_AutoBaudCapture(instance); in LIN_AutoBaudCapture()
736 return retVal; in LIN_AutoBaudCapture()
797 uint8_t retVal; in LIN_ProcessParity() local
812 retVal = 0xFFU; in LIN_ProcessParity()
818 retVal = (uint8_t)(PID & 0x3FU); in LIN_ProcessParity()
825 retVal = (uint8_t)(PID | parity); in LIN_ProcessParity()
828 return retVal; in LIN_ProcessParity()
845 lin_status_t retVal = LIN_ERROR; in LIN_SetResponse() local
849 retVal = LIN_SendFrameData(instance, response_buff, response_length); in LIN_SetResponse()
851 return retVal; in LIN_SetResponse()
868 lin_status_t retVal = LIN_ERROR; in LIN_RxResponse() local
872 retVal = LIN_ReceiveFrameData(instance, response_buff, response_length); in LIN_RxResponse()
874 return retVal; in LIN_RxResponse()
885 lin_status_t retVal = LIN_ERROR; in LIN_IgnoreResponse() local
888 retVal = LIN_GotoIdleState(instance); in LIN_IgnoreResponse()
890 return retVal; in LIN_IgnoreResponse()