Lines Matching refs:ObjDesc
170 ACPI_OPERAND_OBJECT *ObjDesc,
193 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsInitializeRegion() local
197 ObjDesc = AcpiNsGetAttachedObject (ObjHandle); in AcpiDsInitializeRegion()
201 Status = AcpiEvInitializeRegion (ObjDesc); in AcpiDsInitializeRegion()
226 ACPI_OPERAND_OBJECT *ObjDesc, in AcpiDsInitBufferField() argument
239 ACPI_FUNCTION_TRACE_PTR (DsInitBufferField, ObjDesc); in AcpiDsInitBufferField()
370 ObjDesc, FieldFlags, 0, BitOffset, BitCount); in AcpiDsInitBufferField()
376 ObjDesc->BufferField.BufferObj = BufferDesc; in AcpiDsInitBufferField()
377 ObjDesc->BufferField.IsCreateField = AmlOpcode == AML_CREATE_FIELD_OP; in AcpiDsInitBufferField()
382 (BufferDesc->Common.ReferenceCount + ObjDesc->Common.ReferenceCount); in AcpiDsInitBufferField()
407 ObjDesc->BufferField.Flags |= AOPOBJ_DATA_VALID; in AcpiDsInitBufferField()
434 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalBufferFieldOperands() local
460 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalBufferFieldOperands()
461 if (!ObjDesc) in AcpiDsEvalBufferFieldOperands()
484 Status = AcpiDsInitBufferField (Op->Common.AmlOpcode, ObjDesc, in AcpiDsEvalBufferFieldOperands()
492 Status = AcpiDsInitBufferField (Op->Common.AmlOpcode, ObjDesc, in AcpiDsEvalBufferFieldOperands()
521 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalRegionOperands() local
563 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalRegionOperands()
564 if (!ObjDesc) in AcpiDsEvalRegionOperands()
575 ObjDesc->Region.Length = (UINT32) OperandDesc->Integer.Value; in AcpiDsEvalRegionOperands()
580 if (!ObjDesc->Region.Length && (SpaceId < ACPI_NUM_PREDEFINED_REGIONS)) in AcpiDsEvalRegionOperands()
593 ObjDesc->Region.Address = (ACPI_PHYSICAL_ADDRESS) in AcpiDsEvalRegionOperands()
598 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address), in AcpiDsEvalRegionOperands()
599 ObjDesc->Region.Length)); in AcpiDsEvalRegionOperands()
601 Status = AcpiUtAddAddressRange (ObjDesc->Region.SpaceId, in AcpiDsEvalRegionOperands()
602 ObjDesc->Region.Address, ObjDesc->Region.Length, Node); in AcpiDsEvalRegionOperands()
606 ObjDesc->Region.Flags |= AOPOBJ_DATA_VALID; in AcpiDsEvalRegionOperands()
632 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalTableRegionOperands() local
701 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalTableRegionOperands()
702 if (!ObjDesc) in AcpiDsEvalTableRegionOperands()
708 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table); in AcpiDsEvalTableRegionOperands()
709 ObjDesc->Region.Length = Table->Length; in AcpiDsEvalTableRegionOperands()
710 ObjDesc->Region.Pointer = Table; in AcpiDsEvalTableRegionOperands()
713 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address), in AcpiDsEvalTableRegionOperands()
714 ObjDesc->Region.Length)); in AcpiDsEvalTableRegionOperands()
718 ObjDesc->Region.Flags |= AOPOBJ_DATA_VALID; in AcpiDsEvalTableRegionOperands()
748 ACPI_OPERAND_OBJECT *ObjDesc) in AcpiDsEvalDataObjectOperands() argument
813 WalkState, Op, Length, &ObjDesc); in AcpiDsEvalDataObjectOperands()
820 WalkState, Op, Length, &ObjDesc); in AcpiDsEvalDataObjectOperands()
840 WalkState->ResultObj = ObjDesc; in AcpiDsEvalDataObjectOperands()
868 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalBankFieldOperands() local
934 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalBankFieldOperands()
935 if (!ObjDesc) in AcpiDsEvalBankFieldOperands()
940 ObjDesc->BankField.Value = (UINT32) OperandDesc->Integer.Value; in AcpiDsEvalBankFieldOperands()