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

/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
H A DHttpImpl.c976 if ((HttpInstance->CacheBody != NULL) && (HttpInstance->NextMsg != NULL)) {
978 // The data is stored at [NextMsg, CacheBody + CacheLen].
980 HdrLen = HttpInstance->CacheBody + HttpInstance->CacheLen - HttpInstance->NextMsg;
988 FreePool (HttpInstance->CacheBody);
989 HttpInstance->CacheBody = NULL;
1044 if (HttpInstance->CacheBody != NULL) {
1045 FreePool (HttpInstance->CacheBody);
1048 HttpInstance->CacheBody = AllocateZeroPool (BodyLen);
1049 if (HttpInstance->CacheBody == NULL) {
1054 CopyMem (HttpInstance->CacheBody, EndofHeade
[all...]
H A DHttpProto.c218 ASSERT (HttpInstance->CacheBody == NULL);
227 HttpInstance->CacheBody = AllocateZeroPool (HttpInstance->CacheLen);
228 if (HttpInstance->CacheBody == NULL) {
231 CopyMem (HttpInstance->CacheBody, HttpInstance->NextMsg, HttpInstance->CacheLen);
232 HttpInstance->NextMsg = HttpInstance->CacheBody;
843 if (HttpInstance->CacheBody != NULL) {
844 FreePool (HttpInstance->CacheBody);
845 HttpInstance->CacheBody = NULL;
H A DHttpProto.h142 CHAR8 *CacheBody; member in struct:_HTTP_PROTOCOL

Completed in 32 milliseconds