Lines Matching defs:Name
3 * Module Name: aslanalyze.c - Support functions for parse tree walks
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
471 AslGbl_StringBuffer, OpInfo->Name, AslGbl_StringBuffer2);
574 char Name[ACPI_NAMESEG_SIZE + 1];
581 * NOTE: during a review on Name[ACPI_NAMESEG_SIZE + 1] having an extra
592 ACPI_MOVE_32_TO_32 (Name, Op->Asl.NameSeg);
593 Name[ACPI_NAMESEG_SIZE] = 0;
601 if ((Name[0] != '_') ||
602 ((Name[1] != 'L') && (Name[1] != 'E')))
609 GpeNumber = strtoul (&Name[2], NULL, 16);
617 * Create the target name that would cause collision (Flip E/L)
619 ACPI_MOVE_32_TO_32 (Target, Name);
623 if (Name[1] == 'L')
627 else /* Name[1] == 'E' */
638 * We mostly care about methods, but check Name() constructs also,
650 Name);
721 * PARAMETERS: Name - Name to search for
724 * RETURN: TRUE if name found in the same scope as Op.
726 * DESCRIPTION: Determine if a name appears in the same scope as Op, as either
727 * a Method() or a Name(). "Same scope" can mean under an If or
737 * Name (_HID, "INT3442")
739 * Name (_ADR, 0x400)
747 char *Name,
754 ApDeviceSubtreeWalk, NULL, Name);
773 char *Name = ACPI_CAST_PTR (char, Context);
795 if (ACPI_COMPARE_NAMESEG (Name, Op->Asl.NameSeg))
823 * PARAMETERS: Name - Name to search for
826 * RETURN: TRUE if name found in the same scope as Op.
828 * DESCRIPTION: Determine if a name appears in the same scope as Op, as either
829 * a Method() or a Name().
835 char *Name,
847 /* Search entire scope for a match to the name */
854 if (ACPI_COMPARE_NAMESEG (Name, Next->Asl.NameSeg))