Lines Matching refs:Common
202 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode); in AcpiPsGetArg()
221 Arg = Op->Common.Value.Arg; in AcpiPsGetArg()
225 Arg = Arg->Common.Next; in AcpiPsGetArg()
264 OpInfo = AcpiPsGetOpcodeInfo (Op->Common.AmlOpcode); in AcpiPsAppendArg()
270 Op->Common.AmlOpcode)); in AcpiPsAppendArg()
285 if (Op->Common.Value.Arg) in AcpiPsAppendArg()
289 PrevArg = Op->Common.Value.Arg; in AcpiPsAppendArg()
290 while (PrevArg->Common.Next) in AcpiPsAppendArg()
292 PrevArg = PrevArg->Common.Next; in AcpiPsAppendArg()
294 PrevArg->Common.Next = Arg; in AcpiPsAppendArg()
300 Op->Common.Value.Arg = Arg; in AcpiPsAppendArg()
307 Arg->Common.Parent = Op; in AcpiPsAppendArg()
308 Arg = Arg->Common.Next; in AcpiPsAppendArg()
310 Op->Common.ArgListLength++; in AcpiPsAppendArg()
360 Next = Op->Common.Next; in AcpiPsGetDepthNext()
369 Parent = Op->Common.Parent; in AcpiPsGetDepthNext()
378 Arg = Arg->Common.Next; in AcpiPsGetDepthNext()
388 if (Parent->Common.Next) in AcpiPsGetDepthNext()
392 ASL_CV_LABEL_FILENODE (Parent->Common.Next); in AcpiPsGetDepthNext()
393 return (Parent->Common.Next); in AcpiPsGetDepthNext()
397 Parent = Parent->Common.Parent; in AcpiPsGetDepthNext()
428 switch (Op->Common.AmlOpcode) in AcpiPsGetChild()