Home | History | Annotate | Download | only in DxeHttpLib

Lines Matching refs:BodyLength

1096   Parse BodyLength of message-body. This function can be called repeatedly to parse the message-body partially.

1099 @param[in] BodyLength Length in bytes of the Body.
1103 @retval EFI_INVALID_PARAMETER MsgParser is NULL or Body is NULL or BodyLength is 0.
1111 IN UINTN BodyLength,
1121 if (BodyLength == 0 || Body == NULL) {
1159 for (Char = Body; Char < Body + BodyLength; ) {
1173 MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength),
1180 Char += MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength);
1181 Parser->ParsedBodyLength += MIN (BodyLength, Parser->ContentLength - Parser->ParsedBodyLength);
1301 RemainderLengthInThis = BodyLength - (Char - Body);