Home
last modified time | relevance | path

Searched refs:Headers (Results 1 – 16 of 16) sorted by relevance

/device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
DHttpBootSupport.h101 EFI_HTTP_HEADER *Headers; member
209 EFI_HTTP_HEADER *Headers; member
307 IN EFI_HTTP_HEADER *Headers, OPTIONAL
374 IN EFI_HTTP_HEADER *Headers,
DHttpBootSupport.c521 HttpIoHeader->Headers = (EFI_HTTP_HEADER *) (HttpIoHeader + 1); in HttpBootCreateHeader()
542 FreePool (HttpIoHeader->Headers[Index].FieldName); in HttpBootFreeHeader()
543 FreePool (HttpIoHeader->Headers[Index].FieldValue); in HttpBootFreeHeader()
578 Header = HttpFindHeader (HttpIoHeader->HeaderCount, HttpIoHeader->Headers, FieldName); in HttpBootSetHeader()
586 Header = &HttpIoHeader->Headers[HttpIoHeader->HeaderCount]; in HttpBootSetHeader()
853 IN EFI_HTTP_HEADER *Headers, in HttpIoSendRequest() argument
868 HttpIo->ReqToken.Message->Headers = Headers; in HttpIoSendRequest()
942 HttpIo->RspToken.Message->Headers = NULL; in HttpIoRecvResponse()
985 ResponseData->Headers = HttpIo->RspToken.Message->Headers; in HttpIoRecvResponse()
1076 IN EFI_HTTP_HEADER *Headers, in HttpBootCheckImageType() argument
[all …]
DHttpBootClient.c516 if (Cache->ResponseData->Headers != NULL) { 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()
896 HttpIoHeader->Headers, in HttpBootGetBootFile()
937 ResponseData->Headers, in HttpBootGetBootFile()
966 ResponseData->Headers, in HttpBootGetBootFile()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
Dtest_wsgiref.py4 from wsgiref.headers import Headers
340 self.assertEqual(len(Headers([])),0)
341 self.assertEqual(len(Headers(test[:])),1)
342 self.assertEqual(Headers(test[:]).keys(), ['x'])
343 self.assertEqual(Headers(test[:]).values(), ['y'])
344 self.assertEqual(Headers(test[:]).items(), test)
345 self.assertFalse(Headers(test).items() is test) # must be copy!
347 h=Headers([])
370 self.assertRaises(TypeError, Headers, "foo")
374 h = Headers([])
/device/google/cuttlefish/host/commands/fetcher/
Dbuild_api.cc78 std::vector<std::string> BuildApi::Headers() { in Headers() function in BuildApi
91 auto response = curl.DownloadToJson(url, Headers()); in LatestBuildId()
106 auto response_json = curl.DownloadToJson(url, Headers()); in BuildStatus()
116 auto artifacts_json = curl.DownloadToJson(url, Headers()); in Artifacts()
152 return curl.DownloadToFile(url, path, Headers()); in ArtifactToFile()
Dbuild_api.h84 std::vector<std::string> Headers();
/device/linaro/bootloader/edk2/ArmPlatformPkg/Drivers/NorFlashDxe/
DNorFlashFvbDxe.c57 VOID* Headers; in InitializeFvAndVariableStoreHeaders() local
67 Headers = AllocateZeroPool(HeadersLength); in InitializeFvAndVariableStoreHeaders()
86 FirmwareVolumeHeader = (EFI_FIRMWARE_VOLUME_HEADER*)Headers; in InitializeFvAndVariableStoreHeaders()
113 …VariableStoreHeader = (VARIABLE_STORE_HEADER*)((UINTN)Headers + FirmwareVolumeHeader->HeaderLength… in InitializeFvAndVariableStoreHeaders()
120 Status = FvbWrite (&Instance->FvbProtocol, 0, 0, &HeadersLength, Headers); in InitializeFvAndVariableStoreHeaders()
122 FreePool (Headers); in InitializeFvAndVariableStoreHeaders()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DDxeHttpLib.c817 IN EFI_HTTP_HEADER *Headers, in HttpFindHeader() argument
823 if (HeaderCount == 0 || Headers == NULL || FieldName == NULL) { in HttpFindHeader()
831 if (AsciiStriCmp (Headers[Index].FieldName, FieldName) == 0) { in HttpFindHeader()
832 return &Headers[Index]; in HttpFindHeader()
924 IN EFI_HTTP_HEADER *Headers, in HttpIoParseContentLengthHeader() argument
930 Header = HttpFindHeader (HeaderCount, Headers, HTTP_HEADER_CONTENT_LENGTH); in HttpIoParseContentLengthHeader()
952 IN EFI_HTTP_HEADER *Headers in HttpIoIsChunked() argument
958 Header = HttpFindHeader (HeaderCount, Headers, HTTP_HEADER_TRANSFER_ENCODING); in HttpIoIsChunked()
1036 IN EFI_HTTP_HEADER *Headers, in HttpInitMsgParser() argument
1045 if (HeaderCount != 0 && Headers == NULL) { in HttpInitMsgParser()
[all …]
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
DHttpLib.h272 IN EFI_HTTP_HEADER *Headers,
362 IN EFI_HTTP_HEADER *Headers,
/device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/FlashFvbDxe/
DFlashFvbDxe.c134 VOID* Headers; in InitializeFvAndVariableStoreHeaders() local
145 Headers = AllocateZeroPool(HeadersLength); in InitializeFvAndVariableStoreHeaders()
164 FirmwareVolumeHeader = (EFI_FIRMWARE_VOLUME_HEADER*)Headers; in InitializeFvAndVariableStoreHeaders()
191 …VariableStoreHeader = (VARIABLE_STORE_HEADER*)((UINTN)Headers + (UINTN)FirmwareVolumeHeader->Heade… in InitializeFvAndVariableStoreHeaders()
198 Status = FvbWrite (&Instance->FvbProtocol, 0, 0, &HeadersLength, Headers); in InitializeFvAndVariableStoreHeaders()
200 FreePool (Headers); in InitializeFvAndVariableStoreHeaders()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/wsgiref/
Dhandlers.py5 from headers import Headers
62 headers_class = Headers # must be a Headers-like class
Dheaders.py30 class Headers: class
/device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
DHttpImpl.c963 HttpMsg->Headers = NULL; in HttpResponseWorker()
1144 &HttpMsg->Headers, in HttpResponseWorker()
1162 HttpMsg->Headers, in HttpResponseWorker()
1422 if (HttpMsg->Headers != NULL) { in HttpResponseWorker()
1423 FreePool (HttpMsg->Headers); in HttpResponseWorker()
1424 HttpMsg->Headers = NULL; in HttpResponseWorker()
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DHttp.h258 EFI_HTTP_HEADER *Headers; member
/device/generic/goldfish-opengl/
DBUILD.gn134 "//third_party/Vulkan-Headers/include"
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/
Dconfig.ini94 # Headers Checking