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

/vbox/src/VBox/Devices/EFI/Firmware/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...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Library/
H A DExpressionValidate.py147 for Match in MatchList:
148 if Match and Match.start() == 0:
150 self.Token[self.Index:self.Index+Match.end()]
154 self.Index += Match.end()
159 self.Index -= Match.end()
162 Token = self.Token[self.Index - Match.end():self.Index]
165 self.Index -= Match.end()
403 for Match in MatchList:
404 if Match an
[all...]
H A DParserValidate.py222 Match = re.compile(ReString).match(Token)
223 return Match and Match.start() == 0 and Match.end() == len(Token)
H A DParsing.py887 Match = MacroDefPattern.match(LineContent)
888 if not Match:
894 TokenList = GetSplitValueList(LineContent[Match.end(1):], \
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/build/
H A DBuildReport.py149 for Match in gIncludePattern.finditer(FileContents):
150 FileName = Match.group(1).strip()
160 for Match in gIncludePattern2.finditer(FileContents):
161 Key = Match.group(2)
162 Type = Match.group(1)
367 Match = gDxsDependencyPattern.search(open(Source.Path).read())
368 if Match:
369 self.Depex = Match.group(1).strip()
584 Match = gModuleSizePattern.search(FileContents)
585 if Match
[all...]
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Common/
H A DExpression.py550 Match = self.RegGuidPattern.match(Expr)
551 if Match and not Expr[Match.end():Match.end()+1].isalnum() \
552 and Expr[Match.end():Match.end()+1] != '_':
553 self._Idx += Match.end()
554 self._Token = ValueExpression(GuidStringToGuidStructureString(Expr[0:Match.end()]))(True)
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/PCD/Dxe/
H A DPcd.c1126 BOOLEAN Match; local
1167 Match = FALSE;
1170 Match = TRUE;
1174 if (!Match) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Xml/
H A DIniToXml.py217 Match = re.compile(Elem[0]).match(Value)
218 if Match and Match.start() == 0 and Match.end() == len(Value):
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Network/Tcp4Dxe/
H A DTcp4Misc.c188 TCP_CB *Match; local
193 Match = NULL;
227 Match = Node;
231 return Match;
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/FwVol/
H A DFwVol.c1546 BOOLEAN Match; local
1562 for (Index = 0, Match = FALSE; Index < Private->FvCount; Index++) {
1564 Match = TRUE;
1573 if (!Match) {
1576 Match = TRUE;
1587 if (!Match) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/UPT/Parser/
H A DInfSectionParser.py445 for Match in ReFindHobArchRe.finditer(HobSectionStr):
446 Arch = Match.groups(1)[0].upper()
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/TerminalDxe/
H A DTerminal.c1487 BOOLEAN Match; local
1527 Match = FALSE;
1537 Match = TRUE;
1547 if (!Match) {
/vbox/src/VBox/Devices/EFI/Firmware/NetworkPkg/TcpDxe/
H A DTcpMisc.c248 TCP_CB *Match; local
253 Match = NULL;
289 Match = Node;
293 return Match;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Library/GenericBdsLib/
H A DBdsBoot.c1256 BOOLEAN Match; local
1290 Match = FALSE;
1299 Match = CompareGuid ((EFI_GUID *)TmpHdPath->Signature, (EFI_GUID *)HardDriveDevicePath->Signature);
1302 Match = (BOOLEAN)(*((UINT32 *)(&(TmpHdPath->Signature[0]))) == ReadUnaligned32((UINT32 *)(&(HardDriveDevicePath->Signature[0]))));
1305 Match = FALSE;
1310 return Match;
/vbox/src/VBox/Devices/EFI/Firmware/IntelFrameworkModulePkg/Csm/LegacyBiosDxe/
H A DLegacyPci.c291 BOOLEAN Match; local
326 Match = FALSE;
329 Match = TRUE;
337 Match = TRUE;
345 if (Match) {
/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Universal/Console/ConSplitterDxe/
H A DConSplitter.c2574 BOOLEAN Match; local
2649 Match = FALSE;
2665 Match = TRUE;
2672 if (Match) {
3355 @retval FLASE Match failed.
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/C/VfrCompile/
H A DVfrUtilityLib.h146 bool Match (IN CHAR8 *Identifier) { function in struct:SVfrPackStackNode
H A DVfrSyntax.g3010 #token Match("match") "match"
3201 L:Match
H A DVfrUtilityLib.cpp926 if (pNode->Match (Identifier) == TRUE) {
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Ecc/MetaFileWorkspace/
H A DMetaFileParser.py39 Match = gMacroDefPattern.match(self._CurrentLine)
40 if not Match:
45 TokenList = GetSplitValueList(self._CurrentLine[Match.end(1):], TAB_EQUAL_SPLIT, 1)
53 Type = Match.group(1)
/vbox/src/VBox/Devices/EFI/Firmware/BaseTools/Source/Python/Workspace/
H A DMetaFileParser.py37 Match = gMacroDefPattern.match(self._CurrentLine)
38 if not Match:
43 TokenList = GetSplitValueList(self._CurrentLine[Match.end(1):], TAB_EQUAL_SPLIT, 1)
51 Type = Match.group(1)

Completed in 150 milliseconds