Lines Matching refs:InternalObject
498 * PARAMETERS: InternalObject - An ACPI operand object
513 ACPI_OPERAND_OBJECT *InternalObject,
521 ACPI_FUNCTION_TRACE_PTR (UtGetSimpleObjectSize, InternalObject);
530 if (!InternalObject)
542 if (ACPI_GET_DESCRIPTOR_TYPE (InternalObject) == ACPI_DESC_TYPE_NAMED)
555 switch (InternalObject->Common.Type)
559 Length += (ACPI_SIZE) InternalObject->String.Length + 1;
564 Length += (ACPI_SIZE) InternalObject->Buffer.Length;
577 switch (InternalObject->Reference.Class)
584 Size = AcpiNsGetPathnameLength (InternalObject->Reference.Node);
601 AcpiUtGetReferenceName (InternalObject),
602 InternalObject->Reference.Class, InternalObject));
612 AcpiUtGetObjectTypeName (InternalObject),
613 InternalObject->Common.Type, InternalObject));
692 * PARAMETERS: InternalObject - An ACPI internal object
707 ACPI_OPERAND_OBJECT *InternalObject,
714 ACPI_FUNCTION_TRACE_PTR (UtGetPackageObjectSize, InternalObject);
722 InternalObject, NULL, AcpiUtGetElementLength, &Info);
747 * PARAMETERS: InternalObject - An ACPI internal object
759 ACPI_OPERAND_OBJECT *InternalObject,
768 if ((ACPI_GET_DESCRIPTOR_TYPE (InternalObject) ==
770 (InternalObject->Common.Type == ACPI_TYPE_PACKAGE))
772 Status = AcpiUtGetPackageObjectSize (InternalObject, ObjLength);
776 Status = AcpiUtGetSimpleObjectSize (InternalObject, ObjLength);