Lines Matching refs:ResponseData
515 if (Cache->ResponseData != NULL) { in HttpBootFreeCache()
516 if (Cache->ResponseData->Headers != NULL) { in HttpBootFreeCache()
517 for (Index = 0; Index < Cache->ResponseData->HeaderCount; Index++) { in HttpBootFreeCache()
518 FreePool (Cache->ResponseData->Headers[Index].FieldName); in HttpBootFreeCache()
519 FreePool (Cache->ResponseData->Headers[Index].FieldValue); in HttpBootFreeCache()
521 FreePool (Cache->ResponseData->Headers); in HttpBootFreeCache()
748 HTTP_IO_RESPONSE_DATA *ResponseData; in HttpBootGetBootFile() local
911 ResponseData = AllocateZeroPool (sizeof(HTTP_IO_RESPONSE_DATA)); in HttpBootGetBootFile()
912 if (ResponseData == NULL) { in HttpBootGetBootFile()
919 ResponseData in HttpBootGetBootFile()
921 if (EFI_ERROR (Status) || EFI_ERROR (ResponseData->Status)) { in HttpBootGetBootFile()
922 if (EFI_ERROR (ResponseData->Status)) { in HttpBootGetBootFile()
925 Status = ResponseData->Status; in HttpBootGetBootFile()
936 ResponseData->HeaderCount, in HttpBootGetBootFile()
937 ResponseData->Headers, in HttpBootGetBootFile()
948 Cache->ResponseData = ResponseData; in HttpBootGetBootFile()
964 ResponseData->Response.StatusCode, in HttpBootGetBootFile()
965 ResponseData->HeaderCount, in HttpBootGetBootFile()
966 ResponseData->Headers, in HttpBootGetBootFile()
1111 if (ResponseData != NULL) { in HttpBootGetBootFile()
1112 FreePool (ResponseData); in HttpBootGetBootFile()