Lines Matching full:name

3  * Module Name: ahdecode - Miscellaneous decoding for acpihelp utility
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
164 char *Name,
169 char *Name);
173 char *Name);
273 for (Info = Gbl_PreprocessorDirectives; Info->Name; Info++) in AhDisplayDirectives()
275 printf (" %-36s : %s\n", Info->Name, Info->Description); in AhDisplayDirectives()
282 * FUNCTION: AhFindPredefinedNames (entry point for predefined name search)
284 * PARAMETERS: NamePrefix - Name or prefix to find. Must start with
290 * input name or prefix. Includes the required number of arguments
301 char Name[ACPI_NAMESEG_SIZE + 1]; in AhFindPredefinedNames() local
313 printf ("%.8s: Predefined name must be 4 characters maximum\n", in AhFindPredefinedNames()
318 /* Construct a local name or name prefix */ in AhFindPredefinedNames()
326 Name[0] = '_'; in AhFindPredefinedNames()
327 AcpiUtSafeStrncpy (&Name[1], NamePrefix, 4); in AhFindPredefinedNames()
331 AhDoSpecialNames (Name); in AhFindPredefinedNames()
333 /* Lookup and display the name(s) */ in AhFindPredefinedNames()
335 Found = AhDisplayPredefinedName (Name, Length); in AhFindPredefinedNames()
338 printf ("%s, no matching predefined names\n", Name); in AhFindPredefinedNames()
347 * PARAMETERS: Name - Name or prefix to find
367 char *Name) in AhDoSpecialNames() argument
375 switch (Name[1]) in AhDoSpecialNames()
378 if (Name[2] == 'J') in AhDoSpecialNames()
380 if (isdigit ((int) Name[3]) || (Name[3] == 'X')) in AhDoSpecialNames()
384 Name[3] = 'x'; in AhDoSpecialNames()
394 if ((isxdigit ((int) Name[2]) && isxdigit ((int) Name[3])) in AhDoSpecialNames()
396 ((Name[2] == 'X') && (Name[3] == 'X'))) in AhDoSpecialNames()
400 Name[2] = 'x'; in AhDoSpecialNames()
401 Name[3] = 'x'; in AhDoSpecialNames()
406 if ((Name[2] == 'C') || (Name[2] == 'L')) in AhDoSpecialNames()
408 if (isdigit ((int) Name[3]) || (Name[3] == 'X')) in AhDoSpecialNames()
412 Name[3] = 'x'; in AhDoSpecialNames()
418 if (Name[2] == '_') in AhDoSpecialNames()
422 Name[3] = 'x'; in AhDoSpecialNames()
436 * PARAMETERS: Name - Name or name prefix
441 * the input name or name prefix.
447 char *Name, in AhDisplayPredefinedName() argument
456 /* Find/display all names that match the input name prefix */ in AhDisplayPredefinedName()
458 for (Info = AslPredefinedInfo; Info->Name; Info++) in AhDisplayPredefinedName()
460 if (!Name) in AhDisplayPredefinedName()
463 printf ("%s: <%s>\n", Info->Name, Info->Description); in AhDisplayPredefinedName()
466 AhDisplayPredefinedInfo (Info->Name); in AhDisplayPredefinedName()
474 if (Info->Name[i] != Name[i]) in AhDisplayPredefinedName()
484 printf ("%s: <%s>\n", Info->Name, Info->Description); in AhDisplayPredefinedName()
487 AhDisplayPredefinedInfo (Info->Name); in AhDisplayPredefinedName()
491 if (!Name) in AhDisplayPredefinedName()
503 * PARAMETERS: Name - Exact 4-character ACPI name.
507 * DESCRIPTION: Find the name in the main ACPICA predefined info table and
517 char *Name) in AhDisplayPredefinedInfo() argument
526 ThisName = AcpiUtMatchPredefinedMethod (Name); in AhDisplayPredefinedInfo()
534 ThisName = AcpiUtMatchResourceName (Name); in AhDisplayPredefinedInfo()
546 * PARAMETERS: ThisName - Entry in the predefined method/name table
550 * DESCRIPTION: Display information about a resource descriptor name.
565 ThisName->Info.Name, in AhDisplayResourceName()
575 * PARAMETERS: Name - Device Hardware ID string.
586 char *Name) in AhDisplayDeviceIds() argument
595 /* Null input name indicates "display all" */ in AhDisplayDeviceIds()
597 if (!Name || (Name[0] == '*')) in AhDisplayDeviceIds()
600 for (Info = AslDeviceIds; Info->Name; Info++) in AhDisplayDeviceIds()
602 printf ("%8s %s\n", Info->Name, Info->Description); in AhDisplayDeviceIds()
608 Length = strlen (Name); in AhDisplayDeviceIds()
611 printf ("%.8s: Hardware ID must be 8 characters maximum\n", Name); in AhDisplayDeviceIds()
615 /* Find/display all names that match the input name prefix */ in AhDisplayDeviceIds()
617 AcpiUtStrupr (Name); in AhDisplayDeviceIds()
618 for (Info = AslDeviceIds; Info->Name; Info++) in AhDisplayDeviceIds()
623 if (Info->Name[i] != Name[i]) in AhDisplayDeviceIds()
633 printf ("%8s %s\n", Info->Name, Info->Description); in AhDisplayDeviceIds()
639 printf ("%s, Hardware ID not found\n", Name); in AhDisplayDeviceIds()