OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:BodyLength
(Results
1 - 8
of
8
) sorted by null
/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootSupport.h
197
UINTN
BodyLength
;
278
@param[in]
BodyLength
Length in bytes of the HTTP body.
294
IN UINTN
BodyLength
,
HttpBootSupport.c
852
@param[in]
BodyLength
Length in bytes of the HTTP body.
868
IN UINTN
BodyLength
,
883
HttpIo->ReqToken.Message->
BodyLength
=
BodyLength
;
950
HttpIo->RspToken.Message->
BodyLength
= ResponseData->
BodyLength
;
978
ResponseData->
BodyLength
= HttpIo->RspToken.Message->
BodyLength
;
HttpBootClient.c
885
// 3.1 First step, use zero
BodyLength
to only receive the response headers.
960
ResponseBody.
BodyLength
= *BufferSize - ReceivedSize;
969
ReceivedSize += ResponseBody.
BodyLength
;
997
ResponseBody.
BodyLength
= HTTP_BOOT_BLOCK_SIZE;
1012
ResponseBody.
BodyLength
,
[
all
...]
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
HttpLib.h
255
Parse
BodyLength
of message-body. This function can be called repeatedly to parse the message-body partially.
258
@param[in]
BodyLength
Length in bytes of the Body.
262
@retval EFI_INVALID_PARAMETER MsgParser is NULL or Body is NULL or
BodyLength
is 0.
270
IN UINTN
BodyLength
,
/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c
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
;
[
all
...]
HttpProto.c
197
Wrap->HttpToken->Message->
BodyLength
= Length;
203
Wrap->HttpToken->Message->
BodyLength
= HttpInstance->NextMsg -
205
HttpInstance->CacheLen = Length - Wrap->HttpToken->Message->
BodyLength
;
[
all
...]
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Http.h
262
UINTN
BodyLength
;
372
Token->Message->
BodyLength
is non-zero, and
426
size in
BodyLength
. If the remote host provides a response that contains a content
427
body, up to
BodyLength
bytes will be copied from the receive buffer into Body and
428
BodyLength
will be updated with the amount of bytes received and copied to Body. This
430
block of memory. Similar to HTTP request, if Body is not NULL and
BodyLength
is
433
BodyLength
bytes of data will be copied to Body. The HTTP driver will then update
434
BodyLength
with the amount of bytes received and copied to Body.
452
Token->Message->
BodyLength
is non-zero, and
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DxeHttpLib.c
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) {
[
all
...]
Completed in 635 milliseconds