Lines Matching refs:Op

169  *              Op              - Parser object to be translated
174 * DESCRIPTION: Translate a parser Op object to the equivalent namespace object
182 ACPI_PARSE_OBJECT *Op,
193 if (Op->Common.AmlOpcode == AML_INT_NAMEPATH_OP)
200 if (!Op->Common.Node)
204 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
205 (Op->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP))
218 Op->Common.Value.String,
222 ACPI_NAMESPACE_NODE, &(Op->Common.Node)));
226 Op->Common.Value.String, Status);
238 (AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode))->ObjectType);
245 WalkState, Op, Op->Common.AmlOpcode, &ObjDesc);
256 if ((Op->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) ||
257 (Op->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP))
261 if ((Op->Common.AmlOpcode == AML_INT_NAMEPATH_OP) &&
269 ObjDesc->Reference.Aml = Op->Common.Aml;
284 * Op - Parser object to be translated
290 * DESCRIPTION: Translate a parser Op package object to the equivalent
298 ACPI_PARSE_OBJECT *Op,
334 Arg = Op->Common.Value.Arg; /* skip first arg */
391 Op->Common.Node = ACPI_CAST_PTR (ACPI_NAMESPACE_NODE, ObjDesc);
401 * Op - Parser object to be translated
413 ACPI_PARSE_OBJECT *Op)
419 ACPI_FUNCTION_TRACE_PTR (DsCreateNode, Op);
432 if (!Op->Common.Value.Arg)
442 WalkState, Op->Common.Value.Arg, &ObjDesc);
468 * Op - Parser op used to init the internal object
474 * DESCRIPTION: Initialize a namespace object from a parser Op and its
476 * representation of the Op and its arguments.
483 ACPI_PARSE_OBJECT *Op,
514 ObjDesc->Buffer.AmlStart = Op->Named.Data;
515 ObjDesc->Buffer.AmlLength = Op->Named.Length;
529 if (!Op->Named.Data)
534 ObjDesc->Package.AmlStart = Op->Named.Data;
535 ObjDesc->Package.AmlLength = Op->Named.Length;
590 ObjDesc->Integer.Value = Op->Common.Value.Integer;
598 ACPI_FORMAT_UINT64 (Op->Common.Value.Integer),
614 ObjDesc->String.Pointer = Op->Common.Value.String;
615 ObjDesc->String.Length = (UINT32) strlen (Op->Common.Value.String);
659 switch (Op->Common.AmlOpcode)
663 /* Node was saved in Op */
665 ObjDesc->Reference.Node = Op->Common.Node;
667 if (Op->Common.Node)
669 ObjDesc->Reference.Object = Op->Common.Node->Object;