Home
last modified time | relevance | path

Searched refs:MatchString (Results 1 – 11 of 11) sorted by relevance

/device/linaro/bootloader/edk2/SecurityPkg/VariableAuthenticated/SecureBootConfigDxe/
DSecureBootConfigFileExplorer.c240 CHAR16 *MatchString; in ExtractFileNameFromDevicePath() local
248 MatchString = String; in ExtractFileNameFromDevicePath()
252 while(MatchString != NULL){ in ExtractFileNameFromDevicePath()
253 LastMatch = MatchString + 1; in ExtractFileNameFromDevicePath()
254 MatchString = StrStr(LastMatch,L"\\"); in ExtractFileNameFromDevicePath()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/AutoGen/
DIdfClassObject.py108 MatchString = re.match('^[a-zA-Z][a-zA-Z0-9_]*$', LineDetails[1], re.UNICODE)
109 if MatchString == None or MatchString.end(0) != len(LineDetails[1]):
DUniClassObject.py353 MatchString = re.match('^[a-zA-Z][a-zA-Z0-9_]*$', Name, re.UNICODE)
354 if MatchString == None or MatchString.end(0) != len(Name):
523 MatchString = re.match('^[a-zA-Z][a-zA-Z0-9_]*$', Name, re.UNICODE)
524 if MatchString == None or MatchString.end(0) != len(Name):
/device/linaro/bootloader/edk2/MdePkg/Include/Protocol/
DRegularExpressionProtocol.h156 EFI_REGULAR_EXPRESSION_MATCH MatchString; member
/device/linaro/bootloader/edk2/DuetPkg/DxeIpl/
DSerialStatusCode.c539 MatchString (
554 MatchString ( in MatchString() function
693 MatchString ( in SerialReportStatusCode()
702 MatchString ( in SerialReportStatusCode()
711 MatchString ( in SerialReportStatusCode()
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Platform/Generic/RuntimeDxe/StatusCode/Lib/BsSerialStatusCode/
DBsSerialStatusCode.c2033 MatchString (
2049 MatchString ( in MatchString() function
2331 MatchString ( in BsSerialReportStatusCode()
2340 MatchString ( in BsSerialReportStatusCode()
2349 MatchString ( in BsSerialReportStatusCode()
/device/linaro/bootloader/edk2/NetworkPkg/TlsAuthConfigDxe/
DTlsAuthConfigImpl.c888 CHAR16 *MatchString; in ExtractFileNameFromDevicePath() local
896 MatchString = String; in ExtractFileNameFromDevicePath()
900 while(MatchString != NULL){ in ExtractFileNameFromDevicePath()
901 LastMatch = MatchString + 1; in ExtractFileNameFromDevicePath()
902 MatchString = StrStr(LastMatch,L"\\"); in ExtractFileNameFromDevicePath()
/device/linaro/bootloader/edk2/MdeModulePkg/Library/BootMaintenanceManagerUiLib/
DBootMaintenance.c383 CHAR16 *MatchString; in ExtractFileNameFromDevicePath() local
391 MatchString = String; in ExtractFileNameFromDevicePath()
395 while(MatchString != NULL){ in ExtractFileNameFromDevicePath()
396 LastMatch = MatchString + 1; in ExtractFileNameFromDevicePath()
397 MatchString = StrStr(LastMatch,L"\\"); in ExtractFileNameFromDevicePath()
/device/linaro/bootloader/edk2/BaseTools/Source/Python/UPT/Library/
DUniClassObject.py397 MatchString = re.match('[A-Z0-9_]+', Name, re.UNICODE)
398 if MatchString == None or MatchString.end(0) != len(Name):
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Common/
DMisc.py976 MatchString = MatchObj.group(1)
980 if MatchString == self._REPEAT_START_FLAG:
986 elif MatchString == self._REPEAT_END_FLAG:
992 … PlaceHolderList.append((MatchString, MatchStart - SectionStart, MatchEnd - SectionStart))
/device/linaro/bootloader/edk2/MdeModulePkg/Universal/SetupBrowserDxe/
DExpression.c1614 Status = RegularExpressionProtocol->MatchString ( in IfrMatch2()