Home | History | Annotate | Download | only in namespace

Lines Matching defs:SubPackage

417          * First, ensure that the first element is a subpackage. If not,
542 ACPI_OPERAND_OBJECT *SubPackage;
551 * Validate each subpackage in the parent Package
559 SubPackage = *Elements;
560 SubElements = SubPackage->Package.Elements;
561 Info->ParentPackage = SubPackage;
565 Status = AcpiNsCheckObjectType (Info, &SubPackage,
574 Info->ParentPackage = SubPackage;
581 /* Each subpackage has a fixed number of elements */
584 if (SubPackage->Package.Count < ExpectedCount)
602 * Each subpackage has a fixed number of elements and an
606 if (SubPackage->Package.Count < ExpectedCount)
615 SubPackage->Package.Count - Package->RetInfo.Count1, 0);
624 * Each subpackage has a fixed or variable number of elements
630 /* Each subpackage has a fixed length */
633 if (SubPackage->Package.Count < ExpectedCount)
638 /* Check the type of each subpackage element */
653 /* Each subpackage has a variable but minimum length */
656 if (SubPackage->Package.Count < ExpectedCount)
661 /* Check the type of each subpackage element */
665 SubPackage->Package.Count, 0, 0, 0);
689 if (SubPackage->Package.Count < ExpectedCount)
694 if (SubPackage->Package.Count < Package->RetInfo.Count1)
706 * actual size of the subpackage.
708 ExpectedCount = SubPackage->Package.Count;
712 /* Check the type of each subpackage element */
738 /* The subpackage count was smaller than required */
741 "Return SubPackage[%u] is too small - found %u elements, expected %u",
742 i, SubPackage->Package.Count, ExpectedCount));