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.c857 …UINTN ContentLength; // Entity length (not the message-body length), inval… member
923 OUT UINTN *ContentLength in HttpIoParseContentLengthHeader() argument
933 *ContentLength = AsciiStrDecimalToUintn (Header->FieldValue); in HttpIoParseContentLengthHeader()
1070 Status = HttpIoParseContentLengthHeader (HeaderCount, Headers, &Parser->ContentLength); in HttpInitMsgParser()
1173 MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength), in HttpParseMessageBody()
1180 Char += MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength); in HttpParseMessageBody()
1181 … Parser->ParsedBodyLength += MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength); in HttpParseMessageBody()
1182 if (Parser->ParsedBodyLength == Parser->ContentLength) { in HttpParseMessageBody()
1315 Parser->ContentLength += LengthForCallback; in HttpParseMessageBody()
1395 OUT UINTN *ContentLength in HttpGetEntityLength() argument
[all …]
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
DHttpBootClient.c728 UINTN ContentLength; in HttpBootGetBootFile() local
939 ContentLength = 0; in HttpBootGetBootFile()
940 Status = HttpGetEntityLength (Parser, &ContentLength); in HttpBootGetBootFile()
958 while (ReceivedSize < ContentLength) { in HttpBootGetBootFile()
1025 Status = HttpGetEntityLength (Parser, &ContentLength); in HttpBootGetBootFile()
1030 if (*BufferSize < ContentLength) { in HttpBootGetBootFile()
1033 *BufferSize = ContentLength; in HttpBootGetBootFile()
1039 Cache->EntityLength = ContentLength; in HttpBootGetBootFile()
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
DHttpLib.h306 OUT UINTN *ContentLength