Lines Matching defs:Arg
186 ACPI_PARSE_OBJECT *Arg);
277 ACPI_PARSE_OBJECT *Arg;
295 Arg = AcpiPsGetArg (Op, 3);
301 Arg = AcpiPsGetArg (Op, 2);
304 if (!Arg)
342 Arg->Common.Value.String, ACPI_TYPE_ANY,
352 Arg->Common.Value.String, Status);
422 * Arg - First parser arg for the field name list
435 ACPI_PARSE_OBJECT *Arg)
457 while (Arg)
466 switch (Arg->Common.AmlOpcode)
471 (UINT64) Arg->Common.Value.Size;
500 ((UINT8) ((UINT32) (Arg->Common.Value.Integer & 0x07))));
505 ((Arg->Common.Value.Integer >> 8) & 0xFF);
510 ((Arg->Common.Value.Integer >> 16) & 0xFF);
526 Child = Arg->Common.Value.Arg;
554 (char *) &Arg->Named.Name, Info->FieldType,
560 (char *) &Arg->Named.Name, Status);
565 Arg->Common.Node = Info->FieldNode;
566 Info->FieldBitLength = Arg->Common.Value.Size;
598 (UINT64) Arg->Common.Value.Size;
616 Arg->Common.AmlOpcode));
620 Arg = Arg->Common.Next;
648 ACPI_PARSE_OBJECT *Arg;
655 /* First arg is the name of the parent OpRegion (must already exist) */
657 Arg = Op->Common.Value.Arg;
661 Status = AcpiNsLookup (WalkState->ScopeInfo, Arg->Common.Value.Name,
665 Status = AcpiDsCreateExternalRegion (Status, Arg,
666 Arg->Common.Value.Name, WalkState, &RegionNode);
671 Arg->Common.Value.Name, Status);
678 /* Second arg is the field flags */
680 Arg = Arg->Common.Next;
681 Info.FieldFlags = (UINT8) Arg->Common.Value.Integer;
684 /* Each remaining arg is a Named Field */
689 Status = AcpiDsGetFieldNames (&Info, WalkState, Arg->Common.Next);
730 ACPI_PARSE_OBJECT *Arg = NULL;
763 Arg = AcpiPsGetArg (Op, 2);
769 Arg = AcpiPsGetArg (Op, 4);
775 Arg = AcpiPsGetArg (Op, 3);
804 * Note: FieldList can be of zero length. In this case, Arg will be NULL.
806 while (Arg)
812 if (Arg->Common.AmlOpcode == AML_INT_NAMEDFIELD_OP)
815 (char *) &Arg->Named.Name, Type, ACPI_IMODE_LOAD_PASS1,
820 (char *) &Arg->Named.Name, Status);
829 Arg->Common.Node = Node;
834 Arg = Arg->Common.Next;
862 ACPI_PARSE_OBJECT *Arg;
869 /* First arg is the name of the parent OpRegion (must already exist) */
871 Arg = Op->Common.Value.Arg;
874 Status = AcpiNsLookup (WalkState->ScopeInfo, Arg->Common.Value.Name,
878 Status = AcpiDsCreateExternalRegion (Status, Arg,
879 Arg->Common.Value.Name, WalkState, &RegionNode);
884 Arg->Common.Value.Name, Status);
889 /* Second arg is the Bank Register (Field) (must already exist) */
891 Arg = Arg->Common.Next;
892 Status = AcpiNsLookup (WalkState->ScopeInfo, Arg->Common.Value.String,
898 Arg->Common.Value.String, Status);
903 * Third arg is the BankValue
904 * This arg is a TermArg, not a constant
907 Arg = Arg->Common.Next;
909 /* Fourth arg is the field flags */
911 Arg = Arg->Common.Next;
912 Info.FieldFlags = (UINT8) Arg->Common.Value.Integer;
914 /* Each remaining arg is a Named Field */
930 Status = AcpiDsGetFieldNames (&Info, WalkState, Arg->Common.Next);
956 ACPI_PARSE_OBJECT *Arg;
963 /* First arg
965 Arg = Op->Common.Value.Arg;
966 Status = AcpiNsLookup (WalkState->ScopeInfo, Arg->Common.Value.String,
972 Arg->Common.Value.String, Status);
976 /* Second arg is the data register (must already exist) */
978 Arg = Arg->Common.Next;
979 Status = AcpiNsLookup (WalkState->ScopeInfo, Arg->Common.Value.String,
985 Arg->Common.Value.String, Status);
989 /* Next arg is the field flags */
991 Arg = Arg->Common.Next;
992 Info.FieldFlags = (UINT8) Arg->Common.Value.Integer;
994 /* Each remaining arg is a Named Field */
999 Status = AcpiDsGetFieldNames (&Info, WalkState, Arg->Common.Next);