Lines Matching refs:Common
93 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode); in AcpiPsGetArg()
112 Arg = Op->Common.Value.Arg; in AcpiPsGetArg()
116 Arg = Arg->Common.Next; in AcpiPsGetArg()
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()
181 while (PrevArg->Common.Next) in AcpiPsAppendArg()
183 PrevArg = PrevArg->Common.Next; in AcpiPsAppendArg()
185 PrevArg->Common.Next = Arg; in AcpiPsAppendArg()
191 Op->Common.Value.Arg = Arg; in AcpiPsAppendArg()
198 Arg->Common.Parent = Op; in AcpiPsAppendArg()
199 Arg = Arg->Common.Next; in AcpiPsAppendArg()
201 Op->Common.ArgListLength++; in AcpiPsAppendArg()
248 Next = Op->Common.Next; in AcpiPsGetDepthNext()
256 Parent = Op->Common.Parent; in AcpiPsGetDepthNext()
263 Arg = Arg->Common.Next; in AcpiPsGetDepthNext()
273 if (Parent->Common.Next) in AcpiPsGetDepthNext()
277 return (Parent->Common.Next); in AcpiPsGetDepthNext()
281 Parent = Parent->Common.Parent; in AcpiPsGetDepthNext()
311 switch (Op->Common.AmlOpcode) in AcpiPsGetChild()