Searched refs:pucTarget (Results 1 – 8 of 8) sorted by relevance
/FreeRTOS-Plus-TCP-v4.0.0/source/ |
D | FreeRTOS_IPv6_Sockets.c | 507 … pxSet->pucTarget[ pxSet->xTargetIndex ] = ( uint8_t ) ( ( pxSet->ulValue >> 8 ) & 0xffU ); in prv_inet_pton6_add_nibble() 508 … pxSet->pucTarget[ pxSet->xTargetIndex + 1 ] = ( uint8_t ) ( pxSet->ulValue & 0xffU ); in prv_inet_pton6_add_nibble() 546 pxSet->pucTarget[ xTarget ] = pxSet->pucTarget[ xSource ]; in prv_inet_pton6_set_zeros() 547 pxSet->pucTarget[ xSource ] = 0; in prv_inet_pton6_set_zeros() 576 xSet.pucTarget = pvDestination; in FreeRTOS_inet_pton6() 578 ( void ) memset( xSet.pucTarget, 0, ipSIZE_OF_IPv6_ADDRESS ); in FreeRTOS_inet_pton6() 615 … xSet.pucTarget[ xSet.xTargetIndex ] = ( uint8_t ) ( ( xSet.ulValue >> 8 ) & 0xffU ); in FreeRTOS_inet_pton6() 616 xSet.pucTarget[ xSet.xTargetIndex + 1 ] = ( uint8_t ) ( xSet.ulValue & 0xffU ); in FreeRTOS_inet_pton6() 650 xSet.pucTarget = ( uint8_t * ) pvDestination; in FreeRTOS_inet_pton6() 651 ( void ) memset( xSet.pucTarget, 0, ipSIZE_OF_IPv6_ADDRESS ); in FreeRTOS_inet_pton6()
|
D | FreeRTOS_DNS_Parser.c | 1020 uint8_t * pucSource, * pucTarget; in DNS_TreatNBNS() local 1073 pucTarget = &( ucNBNSName[ sizeof( ucNBNSName ) - 2U ] ); in DNS_TreatNBNS() 1074 pucTarget[ 1 ] = ( uint8_t ) 0U; in DNS_TreatNBNS() 1089 if( ( ucByte == ( uint8_t ) ' ' ) && ( pucTarget[ 1 ] == 0U ) ) in DNS_TreatNBNS() 1094 *pucTarget = ucByte; in DNS_TreatNBNS() 1096 if( pucTarget == ucNBNSName ) in DNS_TreatNBNS() 1101 pucTarget -= 1; in DNS_TreatNBNS()
|
D | FreeRTOS_IPv4.c | 450 …uint8_t * pucTarget = ( uint8_t * ) &( pxNetworkBuffer->pucEthernetBuffer[ sizeof( EthernetHeader_… in prvCheckIP4HeaderOptions() local 454 ( void ) memmove( pucTarget, pucSource, xMoveLen ); in prvCheckIP4HeaderOptions()
|
D | FreeRTOS_Sockets.c | 3373 uint8_t * pucTarget ) in FreeRTOS_EUI48_pton() argument 3415 pucTarget[ uxByteNr ] = ( uint8_t ) uxSum; in FreeRTOS_EUI48_pton()
|
/FreeRTOS-Plus-TCP-v4.0.0/source/include/ |
D | FreeRTOS_IPv6_Sockets.h | 68 …uint8_t * pucTarget; /**< The array of bytes in which the resulting IPv6 address is written. … member
|
D | FreeRTOS_Sockets.h | 504 uint8_t * pucTarget );
|
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets_IPv6/ |
D | FreeRTOS_Sockets_IPv6_utest.c | 938 xSet.pucTarget = uIPv6Address; in test_prv_inet_pton6_add_nibble_InvalidHexChar_ValidDigit() 965 xSet.pucTarget = uIPv6Address; in test_prv_inet_pton6_add_nibble_InvalidHexChar_ValidDigit_BufferOverflow() 988 xSet.pucTarget = uIPv6Address; in test_prv_inet_pton6_add_nibble_InvalidHexChar_InValidDigit() 1011 xSet.pucTarget = uIPv6Address; in test_prv_inet_pton6_add_nibble_InvalidHexChar_InValidDigit_3rdColon() 1054 xSet.pucTarget = uIPv6Address; in test_prv_inet_pton6_set_zeros()
|
/FreeRTOS-Plus-TCP-v4.0.0/test/unit-test/FreeRTOS_Sockets/ |
D | FreeRTOS_Sockets_GenericAPI_utest.c | 2427 uint8_t pucTarget[ 6 ]; in test_FreeRTOS_EUI48_pton_InvalidInput() local 2429 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput() 2440 uint8_t pucTarget[ 6 ]; in test_FreeRTOS_EUI48_pton_InvalidInput2() local 2442 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput2() 2453 uint8_t pucTarget[ 6 ]; in test_FreeRTOS_EUI48_pton_InvalidInput3() local 2455 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput3() 2466 uint8_t pucTarget[ 6 ]; in test_FreeRTOS_EUI48_pton_InvalidInput4() local 2468 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_InvalidInput4() 2479 uint8_t pucTarget[ 6 ]; in test_FreeRTOS_EUI48_pton_HappyPath() local 2482 xReturn = FreeRTOS_EUI48_pton( pcSource, pucTarget ); in test_FreeRTOS_EUI48_pton_HappyPath() [all …]
|