Lines Matching refs:ResponseBody
749 HTTP_IO_RESPONSE_DATA ResponseBody; in HttpBootGetBootFile() local
995 ZeroMem (&ResponseBody, sizeof (HTTP_IO_RESPONSE_DATA)); in HttpBootGetBootFile()
1003 ResponseBody.Body = (CHAR8*) Buffer + ReceivedSize; in HttpBootGetBootFile()
1004 ResponseBody.BodyLength = *BufferSize - ReceivedSize; in HttpBootGetBootFile()
1008 &ResponseBody in HttpBootGetBootFile()
1010 if (EFI_ERROR (Status) || EFI_ERROR (ResponseBody.Status)) { in HttpBootGetBootFile()
1011 if (EFI_ERROR (ResponseBody.Status)) { in HttpBootGetBootFile()
1012 Status = ResponseBody.Status; in HttpBootGetBootFile()
1016 ReceivedSize += ResponseBody.BodyLength; in HttpBootGetBootFile()
1043 ResponseBody.Body = (CHAR8*) Block; in HttpBootGetBootFile()
1044 ResponseBody.BodyLength = HTTP_BOOT_BLOCK_SIZE; in HttpBootGetBootFile()
1048 &ResponseBody in HttpBootGetBootFile()
1050 if (EFI_ERROR (Status) || EFI_ERROR (ResponseBody.Status)) { in HttpBootGetBootFile()
1051 if (EFI_ERROR (ResponseBody.Status)) { in HttpBootGetBootFile()
1052 Status = ResponseBody.Status; in HttpBootGetBootFile()
1062 ResponseBody.BodyLength, in HttpBootGetBootFile()
1063 ResponseBody.Body in HttpBootGetBootFile()