Lines Matching refs:Op
76 ACPI_PARSE_OBJECT *Op, in AcpiPsGetArg() argument
93 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode); in AcpiPsGetArg()
112 Arg = Op->Common.Value.Arg; in AcpiPsGetArg()
138 ACPI_PARSE_OBJECT *Op, in AcpiPsAppendArg() argument
148 if (!Op) in AcpiPsAppendArg()
155 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode); in AcpiPsAppendArg()
161 Op->Common.AmlOpcode)); in AcpiPsAppendArg()
176 if (Op->Common.Value.Arg) in AcpiPsAppendArg()
180 PrevArg = Op->Common.Value.Arg; in AcpiPsAppendArg()
191 Op->Common.Value.Arg = Arg; in AcpiPsAppendArg()
198 Arg->Common.Parent = Op; in AcpiPsAppendArg()
201 Op->Common.ArgListLength++; in AcpiPsAppendArg()
223 ACPI_PARSE_OBJECT *Op) in AcpiPsGetDepthNext() argument
233 if (!Op) in AcpiPsGetDepthNext()
240 Next = AcpiPsGetArg (Op, 0); in AcpiPsGetDepthNext()
248 Next = Op->Common.Next; in AcpiPsGetDepthNext()
256 Parent = Op->Common.Parent; in AcpiPsGetDepthNext()
261 while (Arg && (Arg != Origin) && (Arg != Op)) in AcpiPsGetDepthNext()
280 Op = Parent; in AcpiPsGetDepthNext()
303 ACPI_PARSE_OBJECT *Op) in AcpiPsGetChild() argument
311 switch (Op->Common.AmlOpcode) in AcpiPsGetChild()
319 Child = AcpiPsGetArg (Op, 0); in AcpiPsGetChild()
329 Child = AcpiPsGetArg (Op, 1); in AcpiPsGetChild()
335 Child = AcpiPsGetArg (Op, 2); in AcpiPsGetChild()
341 Child = AcpiPsGetArg (Op, 3); in AcpiPsGetChild()