Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
DHttpImpl.c234 EFI_HTTP_MESSAGE *HttpMsg; in EfiHttpRequest() local
270 HttpMsg = Token->Message; in EfiHttpRequest()
271 if (HttpMsg == NULL) { in EfiHttpRequest()
275 Request = HttpMsg->Data.Request; in EfiHttpRequest()
317 if (HttpMsg->Body == NULL || HttpMsg->BodyLength == 0) { in EfiHttpRequest()
592 Status = HttpGenRequestMessage (HttpMsg, FileUrl, &RequestMsg, &RequestMsgSize); in EfiHttpRequest()
936 EFI_HTTP_MESSAGE *HttpMsg; in HttpResponseWorker() local
959 HttpMsg = Token->Message; in HttpResponseWorker()
963 HttpMsg->Headers = NULL; in HttpResponseWorker()
972 if (HttpMsg->Data.Response != NULL) { in HttpResponseWorker()
[all …]
DHttpProto.c2010 IN EFI_HTTP_MESSAGE *HttpMsg in HttpTcpReceiveBody() argument
2034 Rx6Token ->Packet.RxData->DataLength = (UINT32) HttpMsg->BodyLength; in HttpTcpReceiveBody()
2035 Rx6Token ->Packet.RxData->FragmentTable[0].FragmentLength = (UINT32) HttpMsg->BodyLength; in HttpTcpReceiveBody()
2036 Rx6Token ->Packet.RxData->FragmentTable[0].FragmentBuffer = (VOID *) HttpMsg->Body; in HttpTcpReceiveBody()
2046 Rx4Token->Packet.RxData->DataLength = (UINT32) HttpMsg->BodyLength; in HttpTcpReceiveBody()
2047 Rx4Token->Packet.RxData->FragmentTable[0].FragmentLength = (UINT32) HttpMsg->BodyLength; in HttpTcpReceiveBody()
2048 Rx4Token->Packet.RxData->FragmentTable[0].FragmentBuffer = (VOID *) HttpMsg->Body; in HttpTcpReceiveBody()
DHttpProto.h576 IN EFI_HTTP_MESSAGE *HttpMsg