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