Home | History | Annotate | Download | only in dispatcher

Lines Matching defs:Op

173  *              OutOp           - Where to return op if a new one is created
186 ACPI_PARSE_OBJECT *Op;
197 Op = WalkState->Op;
198 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Op=%p State=%p\n", Op, WalkState));
200 if (Op)
225 /* For Namepath op, get the path string */
227 BufferPtr = Op->Common.Value.String;
237 /* Get name from the op */
239 BufferPtr = ACPI_CAST_PTR (char, &Op->Named.Name);
254 "State=%p Op=%p Type=%X\n", WalkState, Op, ObjectType));
281 if (Op && (Op->Named.Node == AcpiGbl_RootNode))
283 Node = Op->Named.Node;
388 if (Op && Op->Common.Node)
390 /* This op/node was previously entered into the namespace */
392 Node = Op->Common.Node;
441 * of this op. AML_EXTERNAL_OP is a declaration rather than a
484 if (!Op)
486 /* Create a new op */
488 Op = AcpiPsAllocOp (WalkState->Opcode, WalkState->Aml);
489 if (!Op)
494 /* Initialize the new op */
498 Op->Named.Name = Node->Name.Integer;
500 *OutOp = Op;
504 * Put the Node in the "op" object that the parser uses, so we
507 Op->Common.Node = Node;
529 ACPI_PARSE_OBJECT *Op;
545 Op = WalkState->Op;
546 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "Opcode [%s] Op %p State %p\n",
547 WalkState->OpInfo->Name, Op, WalkState));
556 if (Op->Common.AmlOpcode == AML_SCOPE_OP)
559 "Ending scope Op=%p State=%p\n", Op, WalkState));
566 * (It was saved in the *op structure)
568 Node = Op->Common.Node;
580 (Op->Common.AmlOpcode != AML_INT_METHODCALL_OP))
582 ACPI_DEBUG_PRINT ((ACPI_DB_DISPATCH, "(%s) Popping scope for Op %p\n",
583 AcpiUtGetTypeName (ObjectType), Op));
621 "Create-Load [%s] State=%p Op=%p NamedObj=%p\n",
622 AcpiPsGetOpcodeName (Op->Common.AmlOpcode), WalkState, Op, Node));
626 Arg = Op->Common.Value.Arg;
636 Status = AcpiDsCreateBufferField (Op, WalkState);
650 Status = AcpiDsInitFieldObjects (Op, WalkState);
653 switch (Op->Common.AmlOpcode)
658 Op, (ACPI_HANDLE) Arg->Common.Node, WalkState);
663 Status = AcpiDsCreateBankField (Op, Arg->Common.Node, WalkState);
668 Status = AcpiDsCreateField (Op, Arg->Common.Node, WalkState);
686 switch (Op->Common.AmlOpcode)
733 switch (Op->Common.AmlOpcode)
738 if (Op->Common.AmlOpcode == AML_REGION_OP)
741 ((Op->Common.Value.Arg)->Common.Value.Integer);
766 Status = AcpiExCreateRegion (Op->Named.Data,
767 Op->Named.Length, RegionSpace, WalkState);
780 Status = AcpiDsCreateNode (WalkState, Node, Op);
818 "LOADING-Method: State=%p Op=%p NamedObj=%p\n",
819 WalkState, Op, Op->Named.Node));
821 if (!AcpiNsGetAttachedObject (Op->Named.Node))
823 WalkState->Operands[0] = ACPI_CAST_PTR (void, Op->Named.Node);
827 WalkState, Op->Common.Value.Arg);
831 Op->Named.Data, Op->Named.Length, WalkState);
860 "RESOLVING-MethodCall: State=%p Op=%p NamedObj=%p\n",
861 WalkState, Op, Node));
883 * later, but for now, we will put it in the "op" object that the
886 Op->Common.Node = NewNode;