Lines Matching refs:Field
640 ACPI_PARSE_OBJECT *Field; in AcpiPsGetNextField() local
694 Field = AcpiPsAllocOp (Opcode, Aml); in AcpiPsGetNextField()
695 if (!Field) in AcpiPsGetNextField()
710 AcpiPsSetName (Field, Name); in AcpiPsGetNextField()
722 if (Field->Common.InlineComment) in AcpiPsGetNextField()
724 Field->Common.NameComment = Field->Common.InlineComment; in AcpiPsGetNextField()
726 Field->Common.InlineComment = AcpiGbl_CurrentInlineComment; in AcpiPsGetNextField()
732 Field->Common.Value.Size = AcpiPsGetNextPackageLength (ParserState); in AcpiPsGetNextField()
740 Field->Common.Value.Size = AcpiPsGetNextPackageLength (ParserState); in AcpiPsGetNextField()
760 Field->Common.Value.Integer = (UINT8) AccessType; in AcpiPsGetNextField()
761 Field->Common.Value.Integer |= (UINT16) (AccessAttribute << 8); in AcpiPsGetNextField()
770 Field->Common.Value.Integer |= (UINT32) (AccessLength << 16); in AcpiPsGetNextField()
799 AcpiPsFreeOp (Field); in AcpiPsGetNextField()
851 AcpiPsFreeOp (Field); in AcpiPsGetNextField()
862 AcpiPsAppendArg (Field, Arg); in AcpiPsGetNextField()
872 return_PTR (Field); in AcpiPsGetNextField()
901 ACPI_PARSE_OBJECT *Field; in AcpiPsGetNextArg() local
948 Field = AcpiPsGetNextField (ParserState); in AcpiPsGetNextArg()
949 if (!Field) in AcpiPsGetNextArg()
956 Prev->Common.Next = Field; in AcpiPsGetNextArg()
960 Arg = Field; in AcpiPsGetNextArg()
962 Prev = Field; in AcpiPsGetNextArg()