Lines Matching defs:Name
3 * Module Name: evgpeinit - System GPE initialization and update
75 * 3.5. Neither the name Intel nor any other trademark owned or controlled by
418 * Extract the name and GPE type from the object, saving this
423 * The name of each GPE control method is of the form:
447 char Name[ACPI_NAMESEG_SIZE + 1];
465 * 1) Extract the method name and null terminate it
467 ACPI_MOVE_32_TO_32 (Name, &MethodNode->Name.Integer);
468 Name[ACPI_NAMESEG_SIZE] = 0;
470 /* 2) Name must begin with an underscore */
472 if (Name[0] != '_')
479 * of the method name
481 switch (Name[1])
499 "(name not of form _Lxx or _Exx)", Name));
503 /* 4) The last two characters of the name are the hex GPE Number */
505 Status = AcpiUtAsciiToHexByte (&Name[2], &TempGpeNumber);
511 "Could not extract GPE number from name: %s "
512 "(name is not of form _Lxx or _Exx)", Name));
571 Name, GpeNumber));