Home
last modified time | relevance | path

Searched refs:lResult (Results 1 – 9 of 9) sorted by relevance

/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_DiffConfig2/
DFreeRTOS_Sockets_DiffConfig2_UDP_API_utest.c57 int32_t lResult; in test_FreeRTOS_sendto_MoreDataThanUDPPayload_UseTempDestinationAddress() local
67lResult = FreeRTOS_sendto( xSocket, pvBuffer, uxTotalDataLength, xFlags, &xDestinationAddress, xDe… in test_FreeRTOS_sendto_MoreDataThanUDPPayload_UseTempDestinationAddress()
69 TEST_ASSERT_EQUAL( 0, lResult ); in test_FreeRTOS_sendto_MoreDataThanUDPPayload_UseTempDestinationAddress()
78 int32_t lResult; in test_FreeRTOS_sendto_MoreDataThanUDPPayload_IPv6DestinationAddress() local
88lResult = FreeRTOS_sendto( xSocket, pvBuffer, uxTotalDataLength, xFlags, &xDestinationAddress, xDe… in test_FreeRTOS_sendto_MoreDataThanUDPPayload_IPv6DestinationAddress()
90 TEST_ASSERT_EQUAL( -pdFREERTOS_ERRNO_EINVAL, lResult ); in test_FreeRTOS_sendto_MoreDataThanUDPPayload_IPv6DestinationAddress()
99 int32_t lResult; in test_FreeRTOS_sendto_MoreDataThanUDPPayload_IPv4DestinationAddress() local
109lResult = FreeRTOS_sendto( xSocket, pvBuffer, uxTotalDataLength, xFlags, &xDestinationAddress, xDe… in test_FreeRTOS_sendto_MoreDataThanUDPPayload_IPv4DestinationAddress()
111 TEST_ASSERT_EQUAL( 0, lResult ); in test_FreeRTOS_sendto_MoreDataThanUDPPayload_IPv4DestinationAddress()
120 int32_t lResult; in test_FreeRTOS_sendto_MoreDataThanUDPPayload_NullDestinationAddress() local
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Tiny_TCP/
DFreeRTOS_Tiny_TCP_utest.c126 int32_t lResult; in test_lTCPWindowTxAdd_length_gt_zero() local
137 lResult = lTCPWindowTxAdd( &xWindow, in test_lTCPWindowTxAdd_length_gt_zero()
142 TEST_ASSERT_EQUAL( 0, lResult ); in test_lTCPWindowTxAdd_length_gt_zero()
147 int32_t lResult; in test_lTCPWindowTxAdd_length_eq_zero() local
160 lResult = lTCPWindowTxAdd( &xWindow, in test_lTCPWindowTxAdd_length_eq_zero()
165 TEST_ASSERT_EQUAL( 0, lResult ); in test_lTCPWindowTxAdd_length_eq_zero()
170 int32_t lResult; in test_lTCPWindowTxAdd_length_eq_zero_with_logging() local
186 lResult = lTCPWindowTxAdd( &xWindow, in test_lTCPWindowTxAdd_length_eq_zero_with_logging()
193 TEST_ASSERT_EQUAL( 0, lResult ); in test_lTCPWindowTxAdd_length_eq_zero_with_logging()
198 int32_t lResult; in test_lTCPWindowTxAdd_length_gt_maxlen() local
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/
DFreeRTOS_Sockets_UDP_API_utest.c871 int32_t lResult; in test_FreeRTOS_sendto_CatchAssert() local
887 int32_t lResult; in test_FreeRTOS_sendto_CatchAssertNullDest() local
902 int32_t lResult; in test_FreeRTOS_sendto_MoreDataThanUDPPayload() local
912lResult = FreeRTOS_sendto( xSocket, pvBuffer, uxTotalDataLength, xFlags, &xDestinationAddress, xDe… in test_FreeRTOS_sendto_MoreDataThanUDPPayload()
914 TEST_ASSERT_EQUAL( 0, lResult ); in test_FreeRTOS_sendto_MoreDataThanUDPPayload()
922 int32_t lResult; in test_FreeRTOS_sendto_TCPSocket() local
933lResult = FreeRTOS_sendto( &xSocket, pvBuffer, uxTotalDataLength, xFlags, &xDestinationAddress, xD… in test_FreeRTOS_sendto_TCPSocket()
935 TEST_ASSERT_EQUAL( 0, lResult ); in test_FreeRTOS_sendto_TCPSocket()
943 int32_t lResult; in test_FreeRTOS_sendto_IPTaskCalling_NoNetworkBuffer() local
962lResult = FreeRTOS_sendto( &xSocket, pvBuffer, uxTotalDataLength, xFlags, &xDestinationAddress, xD… in test_FreeRTOS_sendto_IPTaskCalling_NoNetworkBuffer()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/
DFreeRTOS_TCP_Reception.c113 int32_t lResult; in prvCheckOptions() local
155lResult = prvSingleStepTCPHeaderOptions( pucPtr, uxOptionsLength, pxSocket, xHasSYNFlag ); in prvCheckOptions()
157 if( lResult < 0 ) in prvCheckOptions()
163 if( lResult == 0 ) in prvCheckOptions()
168 uxOptionsLength -= ( size_t ) lResult; in prvCheckOptions()
169 pucPtr = &( pucPtr[ lResult ] ); in prvCheckOptions()
DFreeRTOS_Tiny_TCP.c191 int32_t lResult; in lTCPWindowTxAdd() local
202 lResult = 0L; in lTCPWindowTxAdd()
234 lResult = ( int32_t ) ulLength; in lTCPWindowTxAdd()
237 return lResult; in lTCPWindowTxAdd()
DFreeRTOS_TCP_Transmission.c109 int32_t lResult = 0; in prvTCPSendPacket() local
120 lResult = prvTCPSendRepeated( pxSocket, &pxNetworkBuffer ); in prvTCPSendPacket()
160 lResult = ( int32_t ) uxIntermediateResult; in prvTCPSendPacket()
175 prvTCPReturnPacket( pxSocket, NULL, ( uint32_t ) lResult, pdFALSE ); in prvTCPSendPacket()
184 return lResult; in prvTCPSendPacket()
202 int32_t lResult = 0; in prvTCPSendRepeated() local
226 lResult += xSendLength; in prvTCPSendRepeated()
230 return lResult; in prvTCPSendRepeated()
DFreeRTOS_ARP.c626 uint32_t lResult = 0; in ulARPRemoveCacheEntryByMac() local
635 lResult = xARPCache[ x ].ulIPAddress; in ulARPRemoveCacheEntryByMac()
641 return lResult; in ulARPRemoveCacheEntryByMac()
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_IP_Utils/
DFreeRTOS_IP_Utils_utest.c2703 int32_t lResult; in test_FreeRTOS_max_int32() local
2709 lResult = FreeRTOS_max_int32( i, j ); in test_FreeRTOS_max_int32()
2710 TEST_ASSERT_EQUAL( i, lResult ); in test_FreeRTOS_max_int32()
2718 lResult = FreeRTOS_max_int32( i, j ); in test_FreeRTOS_max_int32()
2719 TEST_ASSERT_EQUAL( i, lResult ); in test_FreeRTOS_max_int32()
2730 uint32_t lResult; in test_FreeRTOS_max_uint32() local
2736 lResult = FreeRTOS_max_uint32( i, j ); in test_FreeRTOS_max_uint32()
2737 TEST_ASSERT_EQUAL( i, lResult ); in test_FreeRTOS_max_uint32()
2745 lResult = FreeRTOS_max_uint32( i, j ); in test_FreeRTOS_max_uint32()
2746 TEST_ASSERT_EQUAL( i, lResult ); in test_FreeRTOS_max_uint32()
[all …]
/FreeRTOS-Plus-TCP-v4.0.0/source/portable/NetworkInterface/xilinx_ultrascale/
Dx_emacpsif_physpeed.c693 LONG lResult; in XEmacPs_PhyRead2() local
696 lResult = XEmacPs_PhyRead( InstancePtr, PhyAddress, RegisterNum, &( usReturn ) ); in XEmacPs_PhyRead2()
698 if( lResult != ( LONG ) ( XST_SUCCESS ) ) in XEmacPs_PhyRead2()