OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UrlParser
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/MdeModulePkg/Include/Library/
HttpLib.h
50
content of the URL won't be modified and the result will be returned in
UrlParser
, which can
52
free the buffer returned in *
UrlParser
by HttpUrlFreeParser().
57
@param[out]
UrlParser
Pointer to the returned buffer to store the parse result.
60
@retval EFI_INVALID_PARAMETER
UrlParser
is NULL or Url is not a valid HTTP URL.
70
OUT VOID **
UrlParser
80
@param[in]
UrlParser
URL Parse result returned by NetHttpParseUrl().
84
@retval EFI_INVALID_PARAMETER Uri is NULL or HostName is NULL or
UrlParser
is invalid.
93
IN VOID *
UrlParser
,
103
@param[in]
UrlParser
URL Parse result returned by NetHttpParseUrl().
107
@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
213
@param[in, out]
UrlParser
Pointer to the buffer of the parse result.
223
IN OUT HTTP_URL_PARSER *
UrlParser
234
ASSERT ((
UrlParser
->FieldBitMap & BIT (HTTP_URI_FIELD_AUTHORITY)) != 0);
248
Authority = Url +
UrlParser
->FieldData[HTTP_URI_FIELD_AUTHORITY].Offset;
249
Length =
UrlParser
->FieldData[HTTP_URI_FIELD_AUTHORITY].Length;
285
UrlParser
->FieldData[Field].Length++;
292
UrlParser
->FieldBitMap |= BIT (Field);
293
UrlParser
->FieldData[Field].Offset = (UINT32) (Char - Url);
294
UrlParser
->FieldData[Field].Length = 1;
404
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
235
VOID *
UrlParser
;
310
UrlParser
= NULL;
311
Status = HttpParseUrl (Url, (UINT32) AsciiStrLen (Url), FALSE, &
UrlParser
);
318
Status = HttpUrlGetHostName (Url,
UrlParser
, &HostName);
323
Status = HttpUrlGetPort (Url,
UrlParser
, &RemotePort);
404
Status = HttpUrlGetIp6 (Url,
UrlParser
, &HttpInstance->RemoteIpv6Addr);
561
if (
UrlParser
!= NULL) {
562
HttpUrlFreeParser (
UrlParser
);
[
all
...]
Completed in 198 milliseconds