• Home
  • Raw
  • Download

Lines Matching refs:VariableName

742   IN CHAR16             *VariableName,  in IsHwErrRecVariable()  argument
747 (StrLen (VariableName) != StrLen (L"HwErrRec####")) || in IsHwErrRecVariable()
748 (StrnCmp(VariableName, L"HwErrRec", StrLen (L"HwErrRec")) != 0) || in IsHwErrRecVariable()
749 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0x8]) || in IsHwErrRecVariable()
750 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0x9]) || in IsHwErrRecVariable()
751 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0xA]) || in IsHwErrRecVariable()
752 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0xB])) { in IsHwErrRecVariable()
771 IN CHAR16 *VariableName, in GetUefiDefinedVarCheckFunction() argument
784 if (StrCmp (mGlobalVariableList[Index].Name, VariableName) == 0) { in GetUefiDefinedVarCheckFunction()
793 NameLength = StrLen (VariableName) - 4; in GetUefiDefinedVarCheckFunction()
795 if ((StrLen (VariableName) == StrLen (mGlobalVariableList2[Index].Name)) && in GetUefiDefinedVarCheckFunction()
796 (StrnCmp (VariableName, mGlobalVariableList2[Index].Name, NameLength) == 0) && in GetUefiDefinedVarCheckFunction()
797 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength]) && in GetUefiDefinedVarCheckFunction()
798 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength + 1]) && in GetUefiDefinedVarCheckFunction()
799 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength + 2]) && in GetUefiDefinedVarCheckFunction()
800 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength + 3])) { in GetUefiDefinedVarCheckFunction()
828 IN CHAR16 *VariableName, in SetVariableCheckHandlerUefiDefined() argument
849 if (!IsHwErrRecVariable (VariableName, VendorGuid)) { in SetVariableCheckHandlerUefiDefined()
856 if (VarCheckLibVariablePropertyGet (VariableName, VendorGuid, &Property) == EFI_NOT_FOUND) { in SetVariableCheckHandlerUefiDefined()
865 …iable Check fail %r - %s not in %g namespace\n", EFI_INVALID_PARAMETER, VariableName, VendorGuid)); in SetVariableCheckHandlerUefiDefined()
876 VarCheckFunction = GetUefiDefinedVarCheckFunction (VariableName, VendorGuid, &VarCheckProperty); in SetVariableCheckHandlerUefiDefined()
884 …((EFI_D_INFO, "UEFI Variable Check function fail %r - %g:%s\n", Status, VendorGuid, VariableName)); in SetVariableCheckHandlerUefiDefined()