Lines Matching refs:Common

95     if (Op->Common.AmlOpcode == AML_INT_NAMEPATH_OP)
102 if (!Op->Common.Node)
105 Op->Common.Value.String,
108 ACPI_CAST_INDIRECT_PTR (ACPI_NAMESPACE_NODE, &(Op->Common.Node)));
115 ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
116 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP)))
135 ACPI_ERROR_NAMESPACE (Op->Common.Value.String, Status);
144 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
145 (Op->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP))
161 ObjDesc = ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Op->Common.Node);
173 * and the Op->Common.Node to point to the Alias target. Note,
176 Type = Op->Common.Node->Type;
179 Type = ObjDesc->Common.Type;
180 Op->Common.Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE,
181 Op->Common.Node->Object);
195 AcpiUtAddReference (Op->Common.Node->Object);
225 (AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode))->ObjectType);
232 WalkState, Op, Op->Common.AmlOpcode, &ObjDesc);
300 Arg = Op->Common.Value.Arg; /* skip first arg */
305 if (ByteList->Common.AmlOpcode != AML_INT_BYTELIST_OP)
309 ByteList->Common.AmlOpcode, ByteList));
315 ByteListLength = (UINT32) ByteList->Common.Value.Integer;
357 Op->Common.Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjDesc);
412 Parent = Op->Common.Parent;
413 while ((Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
414 (Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP))
416 Parent = Parent->Common.Parent;
433 ObjDesc->Package.Node = Parent->Common.Node;
458 Arg = Op->Common.Value.Arg;
459 Arg = Arg->Common.Next;
462 if (Arg->Common.AmlOpcode == AML_INT_RETURN_VALUE_OP)
464 if (Arg->Common.Node->Type == ACPI_TYPE_METHOD)
470 Arg->Common.AmlOpcode = AML_INT_NAMEPATH_OP;
479 ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Arg->Common.Node);
492 ReferenceCount = (*ObjDescPtr)->Common.ReferenceCount;
504 Arg = Arg->Common.Next;
528 if (Arg->Common.Node)
531 ACPI_CAST_PTR (ACPI_OPERAND_OBJECT, Arg->Common.Node));
532 Arg->Common.Node = NULL;
538 Arg = Arg->Common.Next;
559 Op->Common.Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjDesc);
601 if (!Op->Common.Value.Arg)
611 WalkState, Op->Common.Value.Arg, &ObjDesc);
619 Node->Type = ObjDesc->Common.Type;
677 switch (ObjDesc->Common.Type)
712 ObjDesc->Common.Flags = AOPOBJ_AML_CONSTANT;
753 ObjDesc->Integer.Value = Op->Common.Value.Integer;
762 ACPI_FORMAT_UINT64 (Op->Common.Value.Integer),
779 ObjDesc->String.Pointer = Op->Common.Value.String;
780 ObjDesc->String.Length = (UINT32) strlen (Op->Common.Value.String);
786 ObjDesc->Common.Flags |= AOPOBJ_STATIC_POINTER;
828 switch (Op->Common.AmlOpcode)
834 ObjDesc->Reference.Node = Op->Common.Node;
835 ObjDesc->Reference.Object = Op->Common.Node->Object;
857 ObjDesc->Common.Type));