Lines Matching refs:VariableName

716   IN CHAR16             *VariableName,  in IsHwErrRecVariable()  argument
721 (StrLen (VariableName) != StrLen (L"HwErrRec####")) || in IsHwErrRecVariable()
722 (StrnCmp(VariableName, L"HwErrRec", StrLen (L"HwErrRec")) != 0) || in IsHwErrRecVariable()
723 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0x8]) || in IsHwErrRecVariable()
724 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0x9]) || in IsHwErrRecVariable()
725 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0xA]) || in IsHwErrRecVariable()
726 !VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[0xB])) { in IsHwErrRecVariable()
745 IN CHAR16 *VariableName, in GetUefiDefinedVarCheckFunction() argument
758 if (StrCmp (mGlobalVariableList[Index].Name, VariableName) == 0) { in GetUefiDefinedVarCheckFunction()
767 NameLength = StrLen (VariableName) - 4; in GetUefiDefinedVarCheckFunction()
769 if ((StrLen (VariableName) == StrLen (mGlobalVariableList2[Index].Name)) && in GetUefiDefinedVarCheckFunction()
770 (StrnCmp (VariableName, mGlobalVariableList2[Index].Name, NameLength) == 0) && in GetUefiDefinedVarCheckFunction()
771 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength]) && in GetUefiDefinedVarCheckFunction()
772 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength + 1]) && in GetUefiDefinedVarCheckFunction()
773 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength + 2]) && in GetUefiDefinedVarCheckFunction()
774 VarCheckUefiIsHexaDecimalDigitCharacter (VariableName[NameLength + 3])) { in GetUefiDefinedVarCheckFunction()
802 IN CHAR16 *VariableName, in SetVariableCheckHandlerUefiDefined() argument
823 if (!IsHwErrRecVariable (VariableName, VendorGuid)) { in SetVariableCheckHandlerUefiDefined()
830 if (VarCheckLibVariablePropertyGet (VariableName, VendorGuid, &Property) == EFI_NOT_FOUND) { in SetVariableCheckHandlerUefiDefined()
839 …iable Check fail %r - %s not in %g namespace\n", EFI_INVALID_PARAMETER, VariableName, VendorGuid)); in SetVariableCheckHandlerUefiDefined()
850 VarCheckFunction = GetUefiDefinedVarCheckFunction (VariableName, VendorGuid, &VarCheckProperty); in SetVariableCheckHandlerUefiDefined()
858 …((EFI_D_INFO, "UEFI Variable Check function fail %r - %g:%s\n", Status, VendorGuid, VariableName)); in SetVariableCheckHandlerUefiDefined()