Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DDxeHttpLib.c859 …UINTN ContentLength; // Entity length (not the message-body length), inval… member
925 OUT UINTN *ContentLength in HttpIoParseContentLengthHeader() argument
935 *ContentLength = AsciiStrDecimalToUintn (Header->FieldValue); in HttpIoParseContentLengthHeader()
1072 Status = HttpIoParseContentLengthHeader (HeaderCount, Headers, &Parser->ContentLength); in HttpInitMsgParser()
1175 MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength), in HttpParseMessageBody()
1182 Char += MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength); in HttpParseMessageBody()
1183 … Parser->ParsedBodyLength += MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength); in HttpParseMessageBody()
1184 if (Parser->ParsedBodyLength == Parser->ContentLength) { in HttpParseMessageBody()
1317 Parser->ContentLength += LengthForCallback; in HttpParseMessageBody()
1397 OUT UINTN *ContentLength in HttpGetEntityLength() argument
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
DHttpBootClient.c754 UINTN ContentLength; in HttpBootGetBootFile() local
983 ContentLength = 0; in HttpBootGetBootFile()
984 Status = HttpGetEntityLength (Parser, &ContentLength); in HttpBootGetBootFile()
1002 while (ReceivedSize < ContentLength) { in HttpBootGetBootFile()
1075 Status = HttpGetEntityLength (Parser, &ContentLength); in HttpBootGetBootFile()
1080 if (*BufferSize < ContentLength) { in HttpBootGetBootFile()
1085 *BufferSize = ContentLength; in HttpBootGetBootFile()
1091 Cache->EntityLength = ContentLength; in HttpBootGetBootFile()
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
DHttpLib.h332 OUT UINTN *ContentLength