Searched refs:Match (Results 1 - 25 of 40) sorted by relevance

12

/device/linaro/bootloader/edk2/NetworkPkg/Application/IpsecConfig/
H A DMatch.c18 #include "Match.h"
63 BOOLEAN Match; local
65 Match = FALSE;
68 Match = TRUE;
72 Match = TRUE;
78 return Match;
98 BOOLEAN Match; local
100 Match = FALSE;
102 Match = (BOOLEAN) (CompareMem (&Indexer->SaId, SaId, sizeof (EFI_IPSEC_SA_ID)) == 0);
105 Match
130 BOOLEAN Match; local
[all...]
H A DIpSecConfig.inf42 Match.c
43 Match.h
/device/linaro/bootloader/edk2/BeagleBoardPkg/Tools/
H A Dreplace.c24 char *Match; member in struct:__anon4014
42 // argv[3+n] - Match String
51 MATCH_PAIR *Match; local
57 fprintf (stderr, "Need at least two files and one Match/Replacement string pair\n");
61 fprintf (stderr, "Match and Replace string must come in pairs\n");
82 Match = calloc (MaxMatch, sizeof (MATCH_PAIR));
83 if (Match == NULL) {
88 Match[n].Match = argv[3 + n*2];
89 Match[
[all...]
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Compatibility/Library/UefiLanguageLib/
H A DUefiLanguageLib.c276 CONST CHAR8 *Match; local
287 Match = mIso639ToRfc4646ConversionTable;
289 Match = AsciiStrStr (Match, Rfc4646Language);
290 if (Match == NULL) {
293 if (((Match - mIso639ToRfc4646ConversionTable) % 5) == 0) {
296 ++Match;
298 Rfc4646Language[0] = Match[3];
299 Rfc4646Language[1] = Match[4];
329 CONST CHAR8 *Match; local
[all...]
/device/linaro/bootloader/edk2/IntelFspPkg/Tools/
H A DGenCfgOpt.py106 Match = re.match("^([_a-zA-Z0-9]+).(MemoryInitUpdOffset)\s*\|\s*(0x[0-9A-F]+)\s*\|\s*(\d+|0x[0-9a-fA-F]+)\s*\|\s*(.+)",DscLine)
107 if Match:
108 MemUpdInitOffsetValue = int(Match.group(5), 0)
109 Match = re.match("^\s*([_a-zA-Z0-9]+).(SiliconInitUpdOffset)\s*\|\s*(0x[0-9A-F]+)\s*\|\s*(\d+|0x[0-9a-fA-F]+)\s*\|\s*(.+)",DscLine)
110 if Match:
111 SiUpdInitOffsetValue = int(Match.group(5), 0)
112 Match = re.match("^([_a-zA-Z0-9]+).([_a-zA-Z0-9]+)\s*\|\s*(0x[0-9A-F]+)\s*\|\s*(\d+|0x[0-9a-fA-F]+)\s*\|\s*(0x244450554D454D24)",DscLine)
113 if Match:
114 MemUpdInitOffset = int(Match.group(3), 0)
115 Match
[all...]
/device/linaro/bootloader/edk2/IntelFsp2Pkg/Tools/
H A DGenCfgOpt.py341 Match = re.match("(\w+)=(.+)", Macro)
342 if Match:
343 self._MacroDict[Match.group(1)] = Match.group(2)
345 Match = re.match("(\w+)", Macro)
346 if Match:
347 self._MacroDict[Match.group(1)] = ''
366 Match = re.findall("\$\(\w+\)", Input)
367 if Match:
368 for Each in Match
[all...]
/device/linaro/bootloader/edk2/ShellPkg/Library/UefiShellLevel1CommandsLib/
H A DIf.c45 @param[out] Match TRUE when there is another Fragment in Statement,
55 OUT BOOLEAN *Match
78 *Match = TRUE;
80 *Match = FALSE;
370 BOOLEAN Match; local
377 Match = FALSE;
379 if (!EFI_ERROR (IsNextFragment((CONST CHAR16**)(&StatementWalker), L"not", &Match)) && Match) {
389 if (!EFI_ERROR (IsNextFragment((CONST CHAR16**)(&StatementWalker), L"isint", &Match)) && Match) {
[all...]
/device/linaro/bootloader/edk2/EmulatorPkg/Library/SmbiosLib/
H A DSmbiosLib.c259 UINTN Match; local
262 for (Match = 1;!(*Data == 0 && *(Data+1) == 0); ) {
263 if (StringNumber == Match) {
268 Match++;
296 UINTN Match; local
298 Match = 0;
303 if (Match == Instance) {
306 Match++;
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
H A DExpressionValidate.py152 for Match in MatchList:
153 if Match and Match.start() == 0:
155 self.Token[self.Index:self.Index+Match.end()]
159 self.Index += Match.end()
164 self.Index -= Match.end()
167 Token = self.Token[self.Index - Match.end():self.Index]
170 self.Index -= Match.end()
473 for Match in MatchList:
474 if Match an
[all...]
H A DParserValidate.py224 Match = re.compile(ReString).match(Token)
225 return Match and Match.start() == 0 and Match.end() == len(Token)
/device/linaro/bootloader/edk2/BaseTools/Source/Python/build/
H A DBuildReport.py162 for Match in gIncludePattern.finditer(FileContents):
163 FileName = Match.group(1).strip()
173 for Match in gIncludePattern2.finditer(FileContents):
174 Key = Match.group(2)
175 Type = Match.group(1)
382 Match = gDxsDependencyPattern.search(open(Source.Path).read())
383 if Match:
384 self.Depex = Match.group(1).strip()
600 Match = gModuleSizePattern.search(FileContents)
601 if Match
[all...]
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
H A DExpression.py556 Match = self.RegGuidPattern.match(Expr)
557 if Match and not Expr[Match.end():Match.end()+1].isalnum() \
558 and Expr[Match.end():Match.end()+1] != '_':
559 self._Idx += Match.end()
560 self._Token = ValueExpression(GuidStringToGuidStructureString(Expr[0:Match.end()]))(True, self._Depth+1)
H A DRangeExpression.py667 Match = self.RegGuidPattern.match(Expr)
668 if Match and not Expr[Match.end():Match.end() + 1].isalnum() \
669 and Expr[Match.end():Match.end() + 1] != '_':
670 self._Idx += Match.end()
671 self._Token = Expr[0:Match.end()]
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/
H A DPcd.c1193 BOOLEAN Match; local
1202 Match = FALSE;
1209 Match = TRUE;
1213 if (!Match) {
1257 BOOLEAN Match; local
1294 Match = FALSE;
1297 Match = TRUE;
1301 if (!Match) {
/device/linaro/bootloader/OpenPlatformPkg/Drivers/Spi/
H A DMvSpiDxe.c45 UINT32 Spr, BestSpr, Sppr, BestSppr, ClockDivider, Match, Reg, MinBaudDiff; local
63 Match = 1;
74 if (Match == 1) {
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Xml/
H A DIniToXml.py216 Match = re.compile(Elem[0]).match(Value)
217 if Match and Match.start() == 0 and Match.end() == len(Value):
/device/linaro/bootloader/edk2/EmbeddedPkg/Ebl/
H A DCommand.c189 EBL_COMMAND_TABLE *Match; local
200 for (Index = 0, BestMatchCount = 0, Match = NULL; Index < mCmdTableNextFreeIndex; Index++) {
209 Match = mCmdTable[Index];
214 return Match;
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Misc.c190 TCP_CB *Match; local
195 Match = NULL;
229 Match = Node;
233 return Match;
/device/linaro/bootloader/edk2/NetworkPkg/TcpDxe/
H A DTcpMisc.c251 TCP_CB *Match; local
256 Match = NULL;
292 Match = Node;
296 return Match;
/device/linaro/bootloader/edk2/MdeModulePkg/Library/UefiBootManagerLib/
H A DBmHotkey.c1091 BOOLEAN Match; local
1110 Match = (BOOLEAN) (Hotkey->CodeCount == KeyOption.KeyData.Options.InputKeyCount);
1112 for (Index = 0; Match && (Index < Hotkey->CodeCount); Index++) {
1126 Match = FALSE;
1131 if (Match) {
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Parser/
H A DInfSectionParser.py454 for Match in ReFindHobArchRe.finditer(HobSectionStr):
455 Arch = Match.groups(1)[0].upper()
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminal.c1548 BOOLEAN Match; local
1588 Match = FALSE;
1598 Match = TRUE;
1608 if (!Match) {
/device/linaro/bootloader/edk2/EmbeddedPkg/Library/EfiFileLib/
H A DEfiFileLib.c235 BOOLEAN Match; local
243 for (Compare = 0, Match = TRUE; Compare < (FileStart - 1); Compare++) {
245 Match = FALSE;
251 Match = FALSE;
256 if (Match) {
/device/linaro/bootloader/edk2/MdeModulePkg/Core/Pei/FwVol/
H A DFwVol.c1970 BOOLEAN Match; local
1986 for (Index = 0, Match = FALSE; Index < Private->FvCount; Index++) {
1988 Match = TRUE;
1997 if (!Match) {
2000 Match = TRUE;
2011 if (!Match) {
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Foundation/Library/Dxe/UefiEfiIfrSupportLib/
H A DUefiIfrForm.c1452 BOOLEAN Match; local
1498 Match = TRUE;
1520 Match = FALSE;
1525 return Match;

Completed in 242 milliseconds

12