Lines Matching refs:Arg

365     ACPI_PARSE_OBJECT       *Arg,  in AcpiPsGetNextNamepath()  argument
380 AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP); in AcpiPsGetNextNamepath()
386 Arg->Common.Value.Name = Path; in AcpiPsGetNextNamepath()
421 AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP); in AcpiPsGetNextNamepath()
439 AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP); in AcpiPsGetNextNamepath()
445 AcpiPsAppendArg (Arg, NameOp); in AcpiPsGetNextNamepath()
491 else if ((Arg->Common.Parent) && in AcpiPsGetNextNamepath()
492 ((Arg->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) || in AcpiPsGetNextNamepath()
493 (Arg->Common.Parent->Common.AmlOpcode == AML_VARIABLE_PACKAGE_OP))) in AcpiPsGetNextNamepath()
516 Arg->Common.Value.Name = Path; in AcpiPsGetNextNamepath()
539 ACPI_PARSE_OBJECT *Arg) in AcpiPsGetNextSimpleArg() argument
556 Arg->Common.Value.Integer = (UINT64) *Aml; in AcpiPsGetNextSimpleArg()
565 ACPI_MOVE_16_TO_64 (&Arg->Common.Value.Integer, Aml); in AcpiPsGetNextSimpleArg()
574 ACPI_MOVE_32_TO_64 (&Arg->Common.Value.Integer, Aml); in AcpiPsGetNextSimpleArg()
583 ACPI_MOVE_64_TO_64 (&Arg->Common.Value.Integer, Aml); in AcpiPsGetNextSimpleArg()
592 Arg->Common.Value.String = ACPI_CAST_PTR (char, Aml); in AcpiPsGetNextSimpleArg()
607 AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP); in AcpiPsGetNextSimpleArg()
608 Arg->Common.Value.Name = AcpiPsGetNextNamestring (ParserState); in AcpiPsGetNextSimpleArg()
617 AcpiPsInitOp (Arg, Opcode); in AcpiPsGetNextSimpleArg()
641 ACPI_PARSE_OBJECT *Arg = NULL; in AcpiPsGetNextField() local
796 Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP, Aml); in AcpiPsGetNextField()
797 if (!Arg) in AcpiPsGetNextField()
838 Arg->Named.Value.Size = BufferLength; in AcpiPsGetNextField()
839 Arg->Named.Data = ParserState->Aml; in AcpiPsGetNextField()
848 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, Aml); in AcpiPsGetNextField()
849 if (!Arg) in AcpiPsGetNextField()
857 Arg->Common.Value.Name = AcpiPsGetNextNamestring (ParserState); in AcpiPsGetNextField()
862 AcpiPsAppendArg (Field, Arg); in AcpiPsGetNextField()
899 ACPI_PARSE_OBJECT *Arg = NULL; in AcpiPsGetNextArg() local
924 Arg = AcpiPsAllocOp (AML_BYTE_OP, ParserState->Aml); in AcpiPsGetNextArg()
925 if (!Arg) in AcpiPsGetNextArg()
930 AcpiPsGetNextSimpleArg (ParserState, ArgType, Arg); in AcpiPsGetNextArg()
960 Arg = Field; in AcpiPsGetNextArg()
977 Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP, in AcpiPsGetNextArg()
979 if (!Arg) in AcpiPsGetNextArg()
986 Arg->Common.Value.Size = (UINT32) in AcpiPsGetNextArg()
988 Arg->Named.Data = ParserState->Aml; in AcpiPsGetNextArg()
1011 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, ParserState->Aml); in AcpiPsGetNextArg()
1012 if (!Arg) in AcpiPsGetNextArg()
1018 Arg, ACPI_NOT_METHOD_CALL); in AcpiPsGetNextArg()
1043 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, ParserState->Aml); in AcpiPsGetNextArg()
1044 if (!Arg) in AcpiPsGetNextArg()
1050 Arg, ACPI_POSSIBLE_METHOD_CALL); in AcpiPsGetNextArg()
1052 if (Arg->Common.AmlOpcode == AML_INT_METHODCALL_OP) in AcpiPsGetNextArg()
1056 AcpiPsFreeOp (Arg->Common.Value.Arg); in AcpiPsGetNextArg()
1057 AcpiPsFreeOp (Arg); in AcpiPsGetNextArg()
1058 Arg = NULL; in AcpiPsGetNextArg()
1101 *ReturnArg = Arg; in AcpiPsGetNextArg()