Home | History | Annotate | Download | only in compiler

Lines Matching refs:Asl

198     switch (Op->Asl.ParseOpcode)
202 Arg = Op->Asl.Child; /* Get the NameSeg/NameString node */
203 Arg = Arg->Asl.Next; /* First peer is the object to be associated with the name */
205 switch (Arg->Asl.ParseOpcode)
209 return (Arg->Asl.Value.String);
216 AcpiExEisaIdToString (HidString, Arg->Asl.Value.Integer);
363 (Op->Asl.AmlOpcode != AML_DEVICE_OP) &&
364 (Op->Asl.AmlOpcode != AML_SCOPE_OP))
366 Op = Op->Asl.Parent;
377 DeviceNode = Op->Asl.Node;
475 if ((Op->Asl.AmlOpcode == AML_INT_CONNECTION_OP) ||
476 (Op->Asl.ParseOpcode == PARSEOP_CONNECTION))
483 NextOp = NextOp->Asl.Next;
485 (NextOp->Asl.ParseOpcode != PARSEOP_NAMESEG) &&
486 (NextOp->Asl.AmlOpcode != AML_INT_NAMEDFIELD_OP))
488 NextOp = NextOp->Asl.Next;
498 if (NextOp->Asl.ParseOpcode == PARSEOP_NAMESEG)
500 i += (UINT32) NextOp->Asl.Child->Asl.Value.Integer;
504 i += (UINT32) NextOp->Asl.Value.Integer;
510 *TargetNode = NextOp->Asl.Node;