Lines Matching refs:Arg
256 ACPI_PARSE_OBJECT *Arg, in AcpiPsGetNextNamepath() argument
271 AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP); in AcpiPsGetNextNamepath()
277 Arg->Common.Value.Name = Path; in AcpiPsGetNextNamepath()
309 AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP); in AcpiPsGetNextNamepath()
327 AcpiPsInitOp (Arg, AML_INT_METHODCALL_OP); in AcpiPsGetNextNamepath()
333 AcpiPsAppendArg (Arg, NameOp); in AcpiPsGetNextNamepath()
379 else if ((Arg->Common.Parent) && in AcpiPsGetNextNamepath()
380 ((Arg->Common.Parent->Common.AmlOpcode == AML_PACKAGE_OP) || in AcpiPsGetNextNamepath()
381 (Arg->Common.Parent->Common.AmlOpcode == AML_VAR_PACKAGE_OP))) in AcpiPsGetNextNamepath()
404 Arg->Common.Value.Name = Path; in AcpiPsGetNextNamepath()
427 ACPI_PARSE_OBJECT *Arg) in AcpiPsGetNextSimpleArg() argument
444 Arg->Common.Value.Integer = (UINT64) *Aml; in AcpiPsGetNextSimpleArg()
453 ACPI_MOVE_16_TO_64 (&Arg->Common.Value.Integer, Aml); in AcpiPsGetNextSimpleArg()
462 ACPI_MOVE_32_TO_64 (&Arg->Common.Value.Integer, Aml); in AcpiPsGetNextSimpleArg()
471 ACPI_MOVE_64_TO_64 (&Arg->Common.Value.Integer, Aml); in AcpiPsGetNextSimpleArg()
480 Arg->Common.Value.String = ACPI_CAST_PTR (char, Aml); in AcpiPsGetNextSimpleArg()
495 AcpiPsInitOp (Arg, AML_INT_NAMEPATH_OP); in AcpiPsGetNextSimpleArg()
496 Arg->Common.Value.Name = AcpiPsGetNextNamestring (ParserState); in AcpiPsGetNextSimpleArg()
505 AcpiPsInitOp (Arg, Opcode); in AcpiPsGetNextSimpleArg()
529 ACPI_PARSE_OBJECT *Arg = NULL; in AcpiPsGetNextField() local
663 Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP, Aml); in AcpiPsGetNextField()
664 if (!Arg) in AcpiPsGetNextField()
703 Arg->Named.Value.Size = BufferLength; in AcpiPsGetNextField()
704 Arg->Named.Data = ParserState->Aml; in AcpiPsGetNextField()
713 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, Aml); in AcpiPsGetNextField()
714 if (!Arg) in AcpiPsGetNextField()
722 Arg->Common.Value.Name = AcpiPsGetNextNamestring (ParserState); in AcpiPsGetNextField()
727 AcpiPsAppendArg (Field, Arg); in AcpiPsGetNextField()
764 ACPI_PARSE_OBJECT *Arg = NULL; in AcpiPsGetNextArg() local
785 Arg = AcpiPsAllocOp (AML_BYTE_OP, ParserState->Aml); in AcpiPsGetNextArg()
786 if (!Arg) in AcpiPsGetNextArg()
791 AcpiPsGetNextSimpleArg (ParserState, ArgType, Arg); in AcpiPsGetNextArg()
821 Arg = Field; in AcpiPsGetNextArg()
838 Arg = AcpiPsAllocOp (AML_INT_BYTELIST_OP, in AcpiPsGetNextArg()
840 if (!Arg) in AcpiPsGetNextArg()
847 Arg->Common.Value.Size = (UINT32) in AcpiPsGetNextArg()
849 Arg->Named.Data = ParserState->Aml; in AcpiPsGetNextArg()
870 Arg = AcpiPsAllocOp (AML_INT_NAMEPATH_OP, ParserState->Aml); in AcpiPsGetNextArg()
871 if (!Arg) in AcpiPsGetNextArg()
881 Arg, ACPI_POSSIBLE_METHOD_CALL); in AcpiPsGetNextArg()
887 if (Arg->Common.AmlOpcode == AML_INT_METHODCALL_OP) in AcpiPsGetNextArg()
889 AcpiPsFreeOp (Arg); in AcpiPsGetNextArg()
890 Arg = NULL; in AcpiPsGetNextArg()
896 Arg, ACPI_NOT_METHOD_CALL); in AcpiPsGetNextArg()
934 *ReturnArg = Arg; in AcpiPsGetNextArg()