Home
last modified time | relevance | path

Searched refs:MaxBytes (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Locale/
Dmultibyte_Utf8.c901 ssize_t MaxBytes; in wcsrtombs() local
906 MaxBytes = (ssize_t)Limit; in wcsrtombs()
919 if((MaxBytes < 0) || (MaxBytes > ASCII_STRING_MAX)) { in wcsrtombs()
920 MaxBytes = ASCII_STRING_MAX; in wcsrtombs()
922 while ((MaxBytes > 0) && (OneWcToMcLen(InCh = *(*Src)++) <= MaxBytes)) { in wcsrtombs()
931 MaxBytes -= count; in wcsrtombs()
/device/linaro/bootloader/edk2/AppPkg/Applications/Sockets/WebServer/
DHTTP.c650 size_t MaxBytes; in HttpSend() local
661 MaxBytes = sizeof ( pPort->TxBuffer ); in HttpSend()
662 DataBytes = MaxBytes - pPort->TxBytes; in HttpSend()
683 if ( MaxBytes <= pPort->TxBytes ) { in HttpSend()
/device/linaro/bootloader/edk2/StdLib/EfiSocketLib/
DSocket.c2762 socklen_t MaxBytes; in EslSocketOptionGet() local
2791 MaxBytes = *pOptionLength; in EslSocketOptionGet()
2917 if ( LengthInBytes > MaxBytes ) { in EslSocketOptionGet()
2921 MaxBytes )); in EslSocketOptionGet()
2922 LengthInBytes = MaxBytes; in EslSocketOptionGet()
2933 if ( LengthInBytes < MaxBytes ) { in EslSocketOptionGet()
2934 ZeroMem ( &((UINT8 *)pOptionValue)[LengthInBytes], MaxBytes - LengthInBytes ); in EslSocketOptionGet()