Lines Matching defs:LengthInBytes

972   UINTN LengthInBytes;
983 LengthInBytes = sizeof ( *pSocket );
984 pSocket = (ESL_SOCKET *) AllocateZeroPool ( LengthInBytes );
989 LengthInBytes ));
1951 socklen_t LengthInBytes;
2005 LengthInBytes = pSocket->pApi->AddressLength;
2006 if (( LengthInBytes <= *pAddressLength )
2007 && ( 255 >= LengthInBytes )) {
2011 ZeroMem ( pAddress, LengthInBytes );
2012 pAddress->sa_len = (uint8_t)LengthInBytes;
2091 socklen_t LengthInBytes;
2145 LengthInBytes = pSocket->pApi->AddressLength;
2146 if ( LengthInBytes <= *pAddressLength ) {
2150 ZeroMem ( pAddress, LengthInBytes );
2151 pAddress->sa_len = (uint8_t)LengthInBytes;
2671 socklen_t LengthInBytes;
2700 LengthInBytes = 0;
2713 &LengthInBytes );
2753 LengthInBytes = sizeof ( pSocket->bListenCalled );
2761 LengthInBytes = sizeof ( pSocket->bOobInLine );
2769 LengthInBytes = sizeof ( pSocket->bOobInLine );
2777 LengthInBytes = sizeof ( pSocket->RxTimeout );
2785 LengthInBytes = sizeof ( pSocket->MaxRxBuf );
2793 LengthInBytes = sizeof ( pSocket->MaxTxBuf );
2801 LengthInBytes = sizeof ( pSocket->Type );
2810 *pOptionLength = LengthInBytes;
2815 if ( 0 != LengthInBytes ) {
2819 if ( LengthInBytes > MaxBytes ) {
2822 LengthInBytes,
2824 LengthInBytes = MaxBytes;
2830 CopyMem ( pOptionValue, pOptionData, LengthInBytes );
2835 if ( LengthInBytes < MaxBytes ) {
2836 ZeroMem ( &((UINT8 *)pOptionValue)[LengthInBytes], MaxBytes - LengthInBytes );
2885 socklen_t LengthInBytes;
2915 LengthInBytes = 0;
2968 LengthInBytes = sizeof ( pSocket->bOobInLine );
2973 LengthInBytes = sizeof ( pSocket->bOobInLine );
2992 OptionLength = LengthInBytes - 1;
3001 LengthInBytes = sizeof ( pSocket->RxTimeout );
3009 LengthInBytes = sizeof ( pSocket->MaxRxBuf );
3020 LengthInBytes = sizeof ( pSocket->MaxTxBuf );
3029 if ( 0 != LengthInBytes ) {
3033 if ( LengthInBytes <= OptionLength ) {
3037 CopyMem ( pOptionData, pOptionValue, LengthInBytes );
3045 LengthInBytes ));
3070 @param [in] LengthInBytes Length of the packet structure
3080 IN size_t LengthInBytes,
3093 LengthInBytes += sizeof ( *pPacket )
3096 LengthInBytes,
3102 LengthInBytes ));
3106 pPacket->PacketSize = LengthInBytes;
3111 LengthInBytes,
3149 UINTN LengthInBytes;
3157 LengthInBytes = pPacket->PacketSize;
3163 LengthInBytes ));
3386 UINTN LengthInBytes;
3411 LengthInBytes = sizeof ( *pPort )
3417 pPort = (ESL_PORT *) AllocateZeroPool ( LengthInBytes );
3426 LengthInBytes ));
4649 @param [in] LengthInBytes Length of the receive data
4658 IN UINTN LengthInBytes,
4763 *pRxBytes += LengthInBytes;
4773 LengthInBytes,
4815 *pRxBytes += LengthInBytes;
5359 @param [in] LengthInBytes Length of the data in bytes
5371 IN UINT32 LengthInBytes,
5463 LengthInBytes ));