Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
DHttpImpl.c871 if ((HttpInstance->CacheBody != NULL) && (HttpInstance->NextMsg != NULL)) { in HttpResponseWorker()
875 HdrLen = HttpInstance->CacheBody + HttpInstance->CacheLen - HttpInstance->NextMsg; in HttpResponseWorker()
883 FreePool (HttpInstance->CacheBody); in HttpResponseWorker()
884 HttpInstance->CacheBody = NULL; in HttpResponseWorker()
911 if (HttpInstance->CacheBody != NULL) { in HttpResponseWorker()
912 FreePool (HttpInstance->CacheBody); in HttpResponseWorker()
915 HttpInstance->CacheBody = AllocateZeroPool (BodyLen); in HttpResponseWorker()
916 if (HttpInstance->CacheBody == NULL) { in HttpResponseWorker()
921 CopyMem (HttpInstance->CacheBody, EndofHeader, BodyLen); in HttpResponseWorker()
1014 if (HttpInstance->CacheBody != NULL) { in HttpResponseWorker()
[all …]
DHttpProto.c198 ASSERT (HttpInstance->CacheBody == NULL); in HttpTcpReceiveNotifyDpc()
207 HttpInstance->CacheBody = AllocateZeroPool (HttpInstance->CacheLen); in HttpTcpReceiveNotifyDpc()
208 if (HttpInstance->CacheBody == NULL) { in HttpTcpReceiveNotifyDpc()
211 CopyMem (HttpInstance->CacheBody, HttpInstance->NextMsg, HttpInstance->CacheLen); in HttpTcpReceiveNotifyDpc()
212 HttpInstance->NextMsg = HttpInstance->CacheBody; in HttpTcpReceiveNotifyDpc()
818 if (HttpInstance->CacheBody != NULL) { in HttpCleanProtocol()
819 FreePool (HttpInstance->CacheBody); in HttpCleanProtocol()
820 HttpInstance->CacheBody = NULL; in HttpCleanProtocol()
DHttpProto.h130 CHAR8 *CacheBody; member