Home | History | Annotate | Download | only in SetupBrowserDxe

Lines Matching refs:ConfigHdr

650     // Skip <ConfigHdr> and '&' to point to <ConfigBody> when first copy the configbody.

675 BufferSize = (TmpSize + StrLen (BrowserStorage->ConfigHdr) + 2) * sizeof (CHAR16);
680 StrCpyS (ConfigResp, MaxLen, BrowserStorage->ConfigHdr);
1262 NewStringCat (ConfigResp, FormsetStorage->ConfigHdr);
1703 // <ConfigRequest> ::= <ConfigHdr> + <BlockName> ||
1704 // <ConfigHdr> + "&" + <VariableName>
1707 Length = StrLen (FormsetStorage->ConfigHdr);
1710 Length = StrLen (FormsetStorage->ConfigHdr);
1718 StrCpyS (ConfigRequest, MaxLen, FormsetStorage->ConfigHdr);
1999 // <ConfigResp> ::= <ConfigHdr> + <BlockName> + "&VALUE=" + "<HexCh>StorageWidth * 2" ||
2000 // <ConfigHdr> + "&" + <VariableName> + "=" + "<string>"
2014 MaxLen = StrLen (FormsetStorage->ConfigHdr) + Length + 1;
2018 StrCpyS (ConfigResp, MaxLen, FormsetStorage->ConfigHdr);
2738 // Skip the first "&" or the ConfigHdr part.
2748 // For Name/Value type, Skip the ConfigHdr part.
2759 // For Buffer type, Skip the ConfigHdr part.
2883 // If the Progress starts with ConfigHdr, means the failure is in the first name / value pair.
2904 // Find the ConfigHdr in ConfigRequest.
2920 // Find the ConfigHdr in ConfigRequest.
5143 if (StrCmp (Storage->BrowserStorage->ConfigRequest, Storage->ConfigHdr) == 0) {
5434 // Allocate and fill a buffer large enough to hold the <ConfigHdr> template
5437 StrLen = StrSize (Storage->ConfigHdr) + 20 * sizeof (CHAR16);
5444 Storage->ConfigHdr,