Lines Matching refs:ObjDesc
62 ACPI_OPERAND_OBJECT *ObjDesc,
85 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsInitializeRegion() local
89 ObjDesc = AcpiNsGetAttachedObject (ObjHandle); in AcpiDsInitializeRegion()
93 Status = AcpiEvInitializeRegion (ObjDesc, FALSE); in AcpiDsInitializeRegion()
118 ACPI_OPERAND_OBJECT *ObjDesc, in AcpiDsInitBufferField() argument
131 ACPI_FUNCTION_TRACE_PTR (DsInitBufferField, ObjDesc); in AcpiDsInitBufferField()
263 ObjDesc, FieldFlags, 0, BitOffset, BitCount); in AcpiDsInitBufferField()
269 ObjDesc->BufferField.BufferObj = BufferDesc; in AcpiDsInitBufferField()
274 (BufferDesc->Common.ReferenceCount + ObjDesc->Common.ReferenceCount); in AcpiDsInitBufferField()
299 ObjDesc->BufferField.Flags |= AOPOBJ_DATA_VALID; in AcpiDsInitBufferField()
326 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalBufferFieldOperands() local
352 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalBufferFieldOperands()
353 if (!ObjDesc) in AcpiDsEvalBufferFieldOperands()
376 Status = AcpiDsInitBufferField (Op->Common.AmlOpcode, ObjDesc, in AcpiDsEvalBufferFieldOperands()
384 Status = AcpiDsInitBufferField (Op->Common.AmlOpcode, ObjDesc, in AcpiDsEvalBufferFieldOperands()
413 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalRegionOperands() local
453 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalRegionOperands()
454 if (!ObjDesc) in AcpiDsEvalRegionOperands()
465 ObjDesc->Region.Length = (UINT32) OperandDesc->Integer.Value; in AcpiDsEvalRegionOperands()
474 ObjDesc->Region.Address = (ACPI_PHYSICAL_ADDRESS) in AcpiDsEvalRegionOperands()
479 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address), in AcpiDsEvalRegionOperands()
480 ObjDesc->Region.Length)); in AcpiDsEvalRegionOperands()
484 ObjDesc->Region.Flags |= AOPOBJ_DATA_VALID; in AcpiDsEvalRegionOperands()
510 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalTableRegionOperands() local
579 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalTableRegionOperands()
580 if (!ObjDesc) in AcpiDsEvalTableRegionOperands()
586 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table); in AcpiDsEvalTableRegionOperands()
587 ObjDesc->Region.Length = Table->Length; in AcpiDsEvalTableRegionOperands()
590 ObjDesc, ACPI_FORMAT_UINT64 (ObjDesc->Region.Address), in AcpiDsEvalTableRegionOperands()
591 ObjDesc->Region.Length)); in AcpiDsEvalTableRegionOperands()
595 ObjDesc->Region.Flags |= AOPOBJ_DATA_VALID; in AcpiDsEvalTableRegionOperands()
625 ACPI_OPERAND_OBJECT *ObjDesc) in AcpiDsEvalDataObjectOperands() argument
680 WalkState, Op, Length, &ObjDesc); in AcpiDsEvalDataObjectOperands()
687 WalkState, Op, Length, &ObjDesc); in AcpiDsEvalDataObjectOperands()
707 WalkState->ResultObj = ObjDesc; in AcpiDsEvalDataObjectOperands()
735 ACPI_OPERAND_OBJECT *ObjDesc; in AcpiDsEvalBankFieldOperands() local
801 ObjDesc = AcpiNsGetAttachedObject (Node); in AcpiDsEvalBankFieldOperands()
802 if (!ObjDesc) in AcpiDsEvalBankFieldOperands()
807 ObjDesc->BankField.Value = (UINT32) OperandDesc->Integer.Value; in AcpiDsEvalBankFieldOperands()