Lines Matching full:common

496     AcpiOsPrintf ("%-28s", AcpiPsGetOpcodeName (Op->Common.AmlOpcode));
500 switch (Op->Common.AmlOpcode)
504 AcpiOsPrintf ("%2.2X", (UINT32) Op->Common.Value.Integer);
509 AcpiOsPrintf ("%4.4X", (UINT32) Op->Common.Value.Integer);
514 AcpiOsPrintf ("%8.8X", (UINT32) Op->Common.Value.Integer);
519 AcpiOsPrintf ("%8.8X%8.8X", ACPI_FORMAT_UINT64 (Op->Common.Value.Integer));
524 if (Op->Common.Value.String)
526 Status = AcpiNsExternalizeName (ACPI_UINT32_MAX, Op->Common.Value.String,
530 AcpiOsPrintf ("%s %p", Path, Op->Common.Node);
536 Op->Common.Node->Name.Ascii);
557 ACPI_FORMAT_UINT64 (Op->Common.Value.Integer),
558 ACPI_FORMAT_UINT64 (Op->Common.Value.Integer / 8));
605 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
608 switch (Op->Common.AmlOpcode)
613 ChildOp = Op->Common.Value.Arg;
614 if ((ChildOp->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
615 !ChildOp->Common.Node)
617 AcpiNsExternalizeName (ACPI_UINT32_MAX, ChildOp->Common.Value.String,
620 Op->Common.AmlOpName, Path);
623 NextOp = Op->Common.Next;
629 ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0);
642 ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0);
647 ChildOp->Common.Value.String, ACPI_TYPE_METHOD, ArgCount, 0);
655 ChildOp = Op->Common.Value.Arg;
656 if ((ChildOp->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
657 !ChildOp->Common.Node)
659 NextOp = Op->Common.Next;
665 ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0);
675 ChildOp->Common.Value.String, ACPI_TYPE_INTEGER, ArgCount, 0);
680 ChildOp->Common.Value.String, ACPI_TYPE_METHOD, ArgCount, 0);
688 ParentOp = Op->Common.Parent;
689 OpInfo = AcpiPsGetOpcodeInfo (ParentOp->Common.AmlOpcode);
694 (ParentOp->Common.AmlOpcode != AML_INT_METHODCALL_OP) &&
695 !Op->Common.Node)
705 if (((ParentOp->Common.AmlOpcode == AML_IF_OP) ||
706 (ParentOp->Common.AmlOpcode == AML_WHILE_OP) ||
707 (ParentOp->Common.AmlOpcode == AML_RETURN_OP)) &&
710 (ParentOp->Common.Value.Arg == Op))
713 Op->Common.Value.String, ACPI_TYPE_INTEGER, 0, 0);
724 Op->Common.Value.String, ACPI_TYPE_METHOD, ArgCount, 0);
769 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
788 if (!Path && Op->Common.AmlOpcode == AML_INT_NAMEDFIELD_OP)
799 NextOp = Op->Common.Value.Arg;
801 while (NextOp->Common.Next)
803 NextOp = NextOp->Common.Next;
806 Path = NextOp->Common.Value.String;
820 Op->Common.Node = Node;
846 (Op->Common.AmlOpcode != AML_SCOPE_OP))
857 if (Op->Common.Node)
859 Status = AcpiDsScopeStackPush (Op->Common.Node, ObjectType,
906 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
911 (Op->Common.AmlOpcode != AML_INT_NAMEPATH_OP) &&
912 (Op->Common.AmlOpcode != AML_NOTIFY_OP))
925 if (Op->Common.AmlOpcode == AML_ALIAS_OP)
929 NextOp = Op->Common.Value.Arg;
930 NextOp = NextOp->Common.Value.Arg;
931 if (NextOp->Common.AmlOpcode == AML_INT_NAMEPATH_OP)
933 Path = NextOp->Common.Value.String;
936 else if (Op->Common.AmlOpcode == AML_SCOPE_OP ||
937 Op->Common.AmlOpcode == AML_EXTERNAL_OP)
948 NextOp = Op->Common.Value.Arg;
949 if (NextOp->Common.AmlOpcode == AML_INT_NAMEPATH_OP)
951 Path = NextOp->Common.Value.String;
954 else if (Op->Common.AmlOpcode == AML_NOTIFY_OP)
956 Path = Op->Common.Value.Arg->Asl.Value.String;
960 Path = Op->Common.Value.String;
1029 ObjectType2 = Object->Common.Type;
1046 Op->Common.Node = Node;
1050 Op->Common.Node = Node;
1059 if (Op->Common.Node)
1061 Status = AcpiDsScopeStackPush (Op->Common.Node, ObjectType,
1137 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode);
1144 if (Op->Common.Node)
1147 Status = AcpiDsScopeStackPush (Op->Common.Node, ObjectType,
1235 NextOp = Op->Common.Next;
1239 OpInfo = AcpiPsGetOpcodeInfo (NextOp->Common.AmlOpcode);
1243 if ((NextOp->Common.AmlOpcode == AML_STORE_OP) ||
1244 (NextOp->Common.AmlOpcode == AML_NOTIFY_OP) ||
1256 ExecuteOp = NextOp->Common.Value.Arg;
1259 if ((ExecuteOp->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
1260 (ExecuteOp->Common.Value.Arg == NULL))
1267 if (NextOp->Common.AmlOpcode == AML_REF_OF_OP)
1272 ExecuteOp = ExecuteOp->Common.Next;
1284 NextOp = NextOp->Common.Next;