• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /freebsd-13-stable/sys/contrib/dev/acpica/compiler/

Lines Matching refs:ThisName

200     const ACPI_PREDEFINED_INFO  *ThisName;
242 ThisName = &AcpiGbl_PredefinedMethods[Index];
243 RequiredArgCount = METHOD_GET_ARG_COUNT (ThisName->Info.ArgumentList);
248 ThisName->Info.Name, RequiredArgCount);
256 !(ThisName->Info.ArgumentList & ARG_COUNT_IS_MINIMUM))
268 ThisName->Info.ExpectedBtypes)
271 ThisName->Info.ExpectedBtypes);
274 AslGbl_StringBuffer, ThisName->Info.Name);
359 const ACPI_PREDEFINED_INFO *ThisName;
391 ThisName = &AcpiGbl_PredefinedMethods[Index];
392 if (!ThisName->Info.ExpectedBtypes)
415 ApCheckObjectType (ThisName->Info.Name, ReturnValueOp,
416 ThisName->Info.ExpectedBtypes, ACPI_NOT_PACKAGE_ELEMENT);
422 ApCheckPackage (ReturnValueOp, ThisName);
465 const ACPI_PREDEFINED_INFO *ThisName;
505 ThisName = &AcpiGbl_PredefinedMethods[Index];
506 if (METHOD_GET_ARG_COUNT (ThisName->Info.ArgumentList) > 0)
519 if (!ThisName->Info.ExpectedBtypes)
529 ApCheckObjectType (ThisName->Info.Name, Op->Asl.Child->Asl.Next,
530 ThisName->Info.ExpectedBtypes, ACPI_NOT_PACKAGE_ELEMENT);
536 ApCheckPackage (ObjectOp, ThisName);
560 const ACPI_PREDEFINED_INFO *ThisName;
578 ThisName = AcpiGbl_PredefinedMethods;
579 for (i = 0; ThisName->Info.Name[0]; i++)
581 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name))
587 ThisName++; /* Does not account for extra package data, but is OK */
592 ThisName = AcpiGbl_ResourceNames;
593 while (ThisName->Info.Name[0])
595 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name))
600 ThisName++;
603 ThisName = AcpiGbl_ScopeNames;
604 while (ThisName->Info.Name[0])
606 if (ACPI_COMPARE_NAMESEG (Name, ThisName->Info.Name))
611 ThisName++;
842 const ACPI_PREDEFINED_INFO *ThisName;
853 ThisName = AcpiGbl_PredefinedMethods;
854 while (ThisName->Info.Name[0])
856 AcpiUtDisplayPredefinedMethod (AslGbl_MsgBuffer, ThisName, FALSE);
858 ThisName = AcpiUtGetNextPredefinedMethod (ThisName);
869 ThisName = AcpiGbl_ResourceNames;
870 while (ThisName->Info.Name[0])
873 ThisName->Info.ArgumentList);
876 ThisName->Info.Name, AslGbl_MsgBuffer,
880 ThisName++;
890 ThisName = AcpiGbl_ScopeNames;
891 while (ThisName->Info.Name[0])
893 printf ("%4.4s Scope/Device\n", ThisName->Info.Name);
894 ThisName++;