Lines Matching full:name

3  * Module Name: aslpredef - support for ACPI predefined names
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
175 char *Name);
187 * DESCRIPTION: If method is a predefined name, check that the number of
203 /* Check for a match against the predefined name list */ in ApCheckForPredefinedMethod()
209 case ACPI_NOT_RESERVED_NAME: /* No underscore or _Txx or _xxx name not matched */ in ApCheckForPredefinedMethod()
210 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */ in ApCheckForPredefinedMethod()
235 * Matched a predefined method name - validate the ASL-defined in ApCheckForPredefinedMethod()
248 ThisName->Info.Name, RequiredArgCount); in ApCheckForPredefinedMethod()
264 * Check if method returns no value, but the predefined name is in ApCheckForPredefinedMethod()
274 AslGbl_StringBuffer, ThisName->Info.Name); in ApCheckForPredefinedMethod()
326 /* We have a valid return value, but the reserved name did not expect it */ in ApCheckForUnexpectedReturnValue()
342 * DESCRIPTION: If method is a predefined name, attempt to validate the return
363 * Check parent method for a match against the predefined name list. in ApCheckPredefinedReturnValue()
382 case ACPI_NOT_RESERVED_NAME: /* No underscore or _Txx or _xxx name not matched */ in ApCheckPredefinedReturnValue()
383 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */ in ApCheckPredefinedReturnValue()
389 default: /* A standard predefined ACPI name */ in ApCheckPredefinedReturnValue()
415 ApCheckObjectType (ThisName->Info.Name, ReturnValueOp, in ApCheckPredefinedReturnValue()
445 * Name - The ACPI name to be checked
449 * DESCRIPTION: Check for a predefined name for a static object (created via
450 * the ASL Name operator). If it is a predefined ACPI name, ensure
451 * that the name does not require any arguments (which would
452 * require a control method implementation of the name), and that
454 * predefined name.
461 char *Name) in ApCheckForPredefinedObject() argument
469 * Check for a real predefined name -- not a resource descriptor name in ApCheckForPredefinedObject()
470 * or a predefined scope name in ApCheckForPredefinedObject()
472 Index = ApCheckForPredefinedName (Op, Name); in ApCheckForPredefinedObject()
476 case ACPI_NOT_RESERVED_NAME: /* No underscore or _Txx or _xxx name not matched */ in ApCheckForPredefinedObject()
477 case ACPI_PREDEFINED_NAME: /* Resource Name or reserved scope name */ in ApCheckForPredefinedObject()
499 /* A standard predefined ACPI name */ in ApCheckForPredefinedObject()
502 * If this predefined name requires input arguments, then in ApCheckForPredefinedObject()
514 * If no return value is expected from this predefined name, then in ApCheckForPredefinedObject()
529 ApCheckObjectType (ThisName->Info.Name, Op->Asl.Child->Asl.Next, in ApCheckForPredefinedObject()
546 * Name - NameSeg to check
557 char *Name) in ApCheckForPredefinedName() argument
563 if (Name[0] == 0) in ApCheckForPredefinedName()
566 "Zero length name found"); in ApCheckForPredefinedName()
571 if (Name[0] != '_') in ApCheckForPredefinedName()
576 /* Check for a standard predefined method name */ in ApCheckForPredefinedName()
579 for (i = 0; ThisName->Info.Name[0]; i++) in ApCheckForPredefinedName()
581 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name)) in ApCheckForPredefinedName()
593 while (ThisName->Info.Name[0]) in ApCheckForPredefinedName()
595 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name)) in ApCheckForPredefinedName()
604 while (ThisName->Info.Name[0]) in ApCheckForPredefinedName()
606 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name)) in ApCheckForPredefinedName()
614 /* Check for _Lxx/_Exx/_Wxx/_Qxx/_T_x. Warning if unknown predefined name */ in ApCheckForPredefinedName()
616 return (ApCheckForSpecialName (Op, Name)); in ApCheckForPredefinedName()
625 * Name - NameSeg to check
637 char *Name) in ApCheckForSpecialName() argument
648 if ((Name[1] == 'L') || in ApCheckForSpecialName()
649 (Name[1] == 'E') || in ApCheckForSpecialName()
650 (Name[1] == 'W') || in ApCheckForSpecialName()
651 (Name[1] == 'Q')) in ApCheckForSpecialName()
655 if ((isxdigit ((int) Name[2])) && in ApCheckForSpecialName()
656 (isxdigit ((int) Name[3]))) in ApCheckForSpecialName()
688 * The name didn't match any of the known predefined names. Flag it as a in ApCheckForSpecialName()
703 * PARAMETERS: PredefinedName - Name of the predefined object we are checking
713 * by the predefined name. Only a limited number of object types
850 printf ("\nPredefined Name Information\n\n"); in ApDisplayReservedNames()
854 while (ThisName->Info.Name[0]) in ApDisplayReservedNames()
870 while (ThisName->Info.Name[0]) in ApDisplayReservedNames()
876 ThisName->Info.Name, AslGbl_MsgBuffer, in ApDisplayReservedNames()
891 while (ThisName->Info.Name[0]) in ApDisplayReservedNames()
893 printf ("%4.4s Scope/Device\n", ThisName->Info.Name); in ApDisplayReservedNames()