Lines Matching refs:HttpMsg

233   EFI_HTTP_MESSAGE              *HttpMsg;  in EfiHttpRequest()  local
253 HttpMsg = Token->Message; in EfiHttpRequest()
254 if ((HttpMsg == NULL) || (HttpMsg->Headers == NULL)) { in EfiHttpRequest()
264 Request = HttpMsg->Data.Request; in EfiHttpRequest()
499 RequestStr = HttpGenRequestString (HttpInstance, HttpMsg, FileUrl); in EfiHttpRequest()
827 EFI_HTTP_MESSAGE *HttpMsg; in HttpResponseWorker() local
849 HttpMsg = Token->Message; in HttpResponseWorker()
853 HttpMsg->Headers = NULL; in HttpResponseWorker()
859 if (HttpMsg->Data.Response != NULL) { in HttpResponseWorker()
969 &HttpMsg->Headers, in HttpResponseWorker()
970 &HttpMsg->HeaderCount in HttpResponseWorker()
979 HttpMsg->Data.Response->StatusCode = HttpMappingToStatusCode (StatusCode); in HttpResponseWorker()
1000 HttpMsg->Data.Response->StatusCode, in HttpResponseWorker()
1001 HttpMsg->HeaderCount, in HttpResponseWorker()
1002 HttpMsg->Headers, in HttpResponseWorker()
1029 if ((HttpMsg->Body == NULL) || (HttpMsg->BodyLength == 0)) { in HttpResponseWorker()
1060 if (HttpMsg->BodyLength < BodyLen) { in HttpResponseWorker()
1061 … CopyMem (HttpMsg->Body, HttpInstance->CacheBody + HttpInstance->CacheOffset, HttpMsg->BodyLength); in HttpResponseWorker()
1062 HttpInstance->CacheOffset = HttpInstance->CacheOffset + HttpMsg->BodyLength; in HttpResponseWorker()
1067 CopyMem (HttpMsg->Body, HttpInstance->CacheBody + HttpInstance->CacheOffset, BodyLen); in HttpResponseWorker()
1069 HttpMsg->BodyLength = BodyLen; in HttpResponseWorker()
1092 HttpMsg->BodyLength = 0; in HttpResponseWorker()
1103 Status = HttpTcpReceiveBody (Wrap, HttpMsg); in HttpResponseWorker()
1131 if (HttpMsg->Headers != NULL) { in HttpResponseWorker()
1132 FreePool (HttpMsg->Headers); in HttpResponseWorker()
1203 EFI_HTTP_MESSAGE *HttpMsg; in EfiHttpResponse() local
1211 HttpMsg = Token->Message; in EfiHttpResponse()
1212 if (HttpMsg == NULL) { in EfiHttpResponse()