Home | History | Annotate | Download | only in HttpDxe

Lines Matching defs:BodyLength

222                                   Token->Message->BodyLength is non-zero, and

781 UINTN BodyLength;
794 BodyLength = Wrap->HttpToken->Message->BodyLength;
795 if (Data < Body + BodyLength) {
1029 if ((HttpMsg->Body == NULL) || (HttpMsg->BodyLength == 0)) {
1060 if (HttpMsg->BodyLength < BodyLen) {
1061 CopyMem (HttpMsg->Body, HttpInstance->CacheBody + HttpInstance->CacheOffset, HttpMsg->BodyLength);
1062 HttpInstance->CacheOffset = HttpInstance->CacheOffset + HttpMsg->BodyLength;
1069 HttpMsg->BodyLength = BodyLen;
1092 HttpMsg->BodyLength = 0;
1161 size in BodyLength. If the remote host provides a response that contains a content
1162 body, up to BodyLength bytes will be copied from the receive buffer into Body and
1163 BodyLength will be updated with the amount of bytes received and copied to Body. This
1165 block of memory. Similar to HTTP request, if Body is not NULL and BodyLength is
1168 BodyLength bytes of data will be copied to Body. The HTTP driver will then update
1169 BodyLength with the amount of bytes received and copied to Body.
1188 Token->Message->BodyLength is non-zero, and