Lines Matching refs:Character
69 /* Validate each character in the signature */
87 * PARAMETERS: Char - The character to be examined
90 * RETURN: TRUE if the character is valid, FALSE otherwise
92 * DESCRIPTION: Check for a valid ACPI character. Must be one of:
97 * We allow a '!' as the last character because of the ASF! table
103 char Character,
107 if (!((Character >= 'A' && Character <= 'Z') ||
108 (Character >= '0' && Character <= '9') ||
109 (Character == '_')))
113 if (Character == '!' && Position == 3)