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

  /device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
HttpLib.h 52 content of the URL won't be modified and the result will be returned in UrlParser, which can
54 free the buffer returned in *UrlParser by HttpUrlFreeParser().
59 @param[out] UrlParser Pointer to the returned buffer to store the parse result.
62 @retval EFI_INVALID_PARAMETER UrlParser is NULL or Url is not a valid HTTP URL.
72 OUT VOID **UrlParser
82 @param[in] UrlParser URL Parse result returned by NetHttpParseUrl().
86 @retval EFI_INVALID_PARAMETER Uri is NULL or HostName is NULL or UrlParser is invalid.
95 IN VOID *UrlParser,
105 @param[in] UrlParser URL Parse result returned by NetHttpParseUrl().
109 @retval EFI_INVALID_PARAMETER Uri is NULL or Ip4Address is NULL or UrlParser is invalid.
    [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Library/DxeHttpLib/
DxeHttpLib.c 155 @param[in, out] UrlParser Pointer to the buffer of the parse result.
165 IN OUT HTTP_URL_PARSER *UrlParser
176 ASSERT ((UrlParser->FieldBitMap & BIT (HTTP_URI_FIELD_AUTHORITY)) != 0);
190 Authority = Url + UrlParser->FieldData[HTTP_URI_FIELD_AUTHORITY].Offset;
191 Length = UrlParser->FieldData[HTTP_URI_FIELD_AUTHORITY].Length;
227 UrlParser->FieldData[Field].Length++;
234 UrlParser->FieldBitMap |= BIT (Field);
235 UrlParser->FieldData[Field].Offset = (UINT32) (Char - Url);
236 UrlParser->FieldData[Field].Length = 1;
346 content of the URL won't be modified and the result will be returned in UrlParser, which can
    [all...]
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c 236 VOID *UrlParser;
257 UrlParser = NULL;
376 UrlParser = NULL;
377 Status = HttpParseUrl (Url, (UINT32) AsciiStrLen (Url), FALSE, &UrlParser);
383 Status = HttpUrlGetHostName (Url, UrlParser, &HostName);
388 Status = HttpUrlGetPort (Url, UrlParser, &RemotePort);
479 Status = HttpUrlGetIp6 (Url, UrlParser, &HttpInstance->RemoteIpv6Addr);
674 if (UrlParser!= NULL) {
675 HttpUrlFreeParser (UrlParser);
    [all...]

Completed in 401 milliseconds