Home | History | Annotate | Download | only in acpihelp

Lines Matching defs:Name

3  * Module Name: ahmain - Main module for the acpi help utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
170 #define ACPI_OPTION(Name, Description) \
171 AcpiOsPrintf (" %-24s%s\n", Name, Description);
187 ACPI_USAGE_HEADER ("acpihelp <options> [Name/Prefix | HexValue]");
193 ACPI_OPTION ("-a [Name/Prefix | *]", "Display both ASL operator and AML opcode name(s)");
194 ACPI_OPTION ("-g [Name/Prefix | *]", "Display AML grammar elements(s)");
195 ACPI_OPTION ("-m [Name/Prefix | *]", "Display AML opcode name(s)");
203 ACPI_OPTION ("-k [Name/Prefix | *]", "Display ASL non-operator keyword(s)");
204 ACPI_OPTION ("-p [Name/Prefix | *]", "Display ASL predefined method name(s)");
205 ACPI_OPTION ("-s [Name/Prefix | *]", "Display ASL operator name(s)");
208 ACPI_OPTION ("-i [Name/Prefix | *]", "Display ACPI/PNP Hardware ID(s)");
214 ACPI_USAGE_TEXT ("\nDefault search with valid Name/Prefix and no options:\n");
233 char *Name;
345 /* Missing (null) name means "display all" */
347 Name = argv[AcpiGbl_Optind];
353 AhFindAslAndAmlOperators (Name);
358 AhFindAmlOpcode (Name);
363 AhDecodeAmlOpcode (Name);
368 AhFindAmlTypes (Name);
373 AhFindPredefinedNames (Name);
378 AhFindAslOperators (Name);
383 AhFindAslKeywords (Name);
388 AhDisplayDeviceIds (Name);
393 AhDecodeException (Name);
413 AhDecodeAslException (Name);
418 if (!Name)
420 AhFindAslOperators (Name);
424 if (*Name == '_')
426 AhFindPredefinedNames (Name);
430 AhFindAslAndAmlOperators (Name);