Lines Matching defs:Op
177 * PARAMETERS: Op - Current parse node
197 ACPI_PARSE_OBJECT *Op)
207 if (!Op)
209 AslError (ASL_ERROR, ASL_MSG_NOT_EXIST, Op, NULL);
213 if (Op->Asl.ParseOpcode != PARSEOP_TOPLD)
215 AslError (ASL_ERROR, ASL_MSG_INVALID_TYPE, Op, NULL);
223 ThisOp = Op->Asl.Child;
678 /* Change Op to a Buffer */
680 Op->Asl.ParseOpcode = PARSEOP_BUFFER;
681 Op->Common.AmlOpcode = AML_BUFFER_OP;
685 Op->Asl.CompileFlags &= ~OP_COMPILE_TIME_CONST;
686 UtSetParseOpName (Op);
694 NewOp->Asl.Parent = Op;
696 Op->Asl.Child = NewOp;
697 Op = NewOp;
705 NewOp->Asl.Parent = Op->Asl.Parent;
707 Op->Asl.Next = NewOp;