HomeSort by relevance Sort by last modified time
    Searched refs:HttpConfigData (Results 1 - 4 of 4) sorted by null

  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.h 39 @param[out] HttpConfigData Point to buffer for operational parameters of this
45 HttpConfigData is NULL.
46 HttpConfigData->AccessPoint is NULL.
55 OUT EFI_HTTP_CONFIG_DATA *HttpConfigData
62 When HttpConfigData is not NULL Initialize this EFI HTTP instance by configuring
64 When HttpConfigData is NULL, reset this EFI HTTP instance by closing all active
72 @param[in] HttpConfigData Pointer to the configure data to configure the instance.
77 HttpConfigData->LocalAddressIsIPv6 is FALSE and
78 HttpConfigData->IPv4Node is NULL.
79 HttpConfigData->LocalAddressIsIPv6 is TRUE and
    [all...]
HttpImpl.c 35 @param[out] HttpConfigData Point to buffer for operational parameters of this
41 HttpConfigData is NULL.
42 HttpConfigData->AccessPoint is NULL.
51 OUT EFI_HTTP_CONFIG_DATA *HttpConfigData
58 if ((This == NULL) || (HttpConfigData == NULL)) {
69 HttpConfigData->HttpVersion = HttpInstance->HttpVersion;
70 HttpConfigData->TimeOutMillisec = HttpInstance->TimeOutMillisec;
71 HttpConfigData->LocalAddressIsIPv6 = HttpInstance->LocalAddressIsIPv6;
83 HttpConfigData->AccessPoint.IPv6Node = Http6AccessPoint;
94 HttpConfigData->AccessPoint.IPv4Node = Http4AccessPoint;
    [all...]
  /device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
Http.h 304 @param[out] HttpConfigData Point to buffer for operational parameters of this
314 OUT EFI_HTTP_CONFIG_DATA *HttpConfigData
321 When HttpConfigData is not NULL Initialize this EFI HTTP instance by configuring
323 When HttpConfigData is NULL, reset this EFI HTTP instance by closing all active
331 @param[in] HttpConfigData Pointer to the configure data to configure the instance.
336 HttpConfigData->LocalAddressIsIPv6 is FALSE and
337 HttpConfigData->IPv4Node is NULL.
338 HttpConfigData->LocalAddressIsIPv6 is TRUE and
339 HttpConfigData->IPv6Node is NULL.
352 IN EFI_HTTP_CONFIG_DATA *HttpConfigData
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootSupport.c 689 EFI_HTTP_CONFIG_DATA HttpConfigData;
738 ZeroMem (&HttpConfigData, sizeof (EFI_HTTP_CONFIG_DATA));
739 HttpConfigData.HttpVersion = HttpVersion11;
740 HttpConfigData.TimeOutMillisec = ConfigData->Config4.RequestTimeOut;
742 HttpConfigData.LocalAddressIsIPv6 = FALSE;
748 HttpConfigData.AccessPoint.IPv4Node = &Http4AccessPoint;
750 HttpConfigData.LocalAddressIsIPv6 = TRUE;
753 HttpConfigData.AccessPoint.IPv6Node = &Http6AccessPoint;
756 Status = Http->Configure (Http, &HttpConfigData);

Completed in 87 milliseconds