Lines Matching refs:pxDestinationAddress
168 const struct freertos_sockaddr * pxDestinationAddress,
351 const struct freertos_sockaddr * pxDestinationAddress,
1405 const struct freertos_sockaddr * pxDestinationAddress, in prvSendUDPPacket() argument
1412 …switch( pxDestinationAddress->sin_family ) /* LCOV_EXCL_BR_LINE Exclude this line because default … in prvSendUDPPacket()
1416 ( void ) xSend_UDP_Update_IPv6( pxNetworkBuffer, pxDestinationAddress ); in prvSendUDPPacket()
1422 ( void ) xSend_UDP_Update_IPv4( pxNetworkBuffer, pxDestinationAddress ); in prvSendUDPPacket()
1432 pxNetworkBuffer->usPort = pxDestinationAddress->sin_port; in prvSendUDPPacket()
1489 const struct freertos_sockaddr * pxDestinationAddress, in prvSendTo_ActualSend() argument
1542 pxDestinationAddress, in prvSendTo_ActualSend()
1579 const struct freertos_sockaddr * pxDestinationAddress, in FreeRTOS_sendto() argument
1590 …if( ( pxDestinationAddress != NULL ) && ( pxDestinationAddress->sin_family != FREERTOS_AF_INET6 ) … in FreeRTOS_sendto()
1592 …( void ) memcpy( &xTempDestinationAddress, pxDestinationAddress, sizeof( struct freertos_sockaddr … in FreeRTOS_sendto()
1597 pxDestinationAddress = &xTempDestinationAddress; in FreeRTOS_sendto()
1605 configASSERT( pxDestinationAddress != NULL ); in FreeRTOS_sendto()
1608 switch( pxDestinationAddress->sin_family ) in FreeRTOS_sendto()
1639 …SendTo_ActualSend( pxSocket, pvBuffer, uxTotalDataLength, xFlags, pxDestinationAddress, uxPayloadO… in FreeRTOS_sendto()