Home
last modified time | relevance | path

Searched refs:SourceDesc (Results 1 – 9 of 9) sorted by relevance

/onnv-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexstore.c134 ACPI_OPERAND_OBJECT *SourceDesc,
161 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExDoDebugObject() argument
168 ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc); in AcpiExDoDebugObject()
187 if (!SourceDesc) in AcpiExDoDebugObject()
193 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND) in AcpiExDoDebugObject()
196 AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExDoDebugObject()
198 if (!AcpiUtValidInternalObject (SourceDesc)) in AcpiExDoDebugObject()
201 "%p, Invalid Internal Object!\n", SourceDesc)); in AcpiExDoDebugObject()
205 else if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_NAMED) in AcpiExDoDebugObject()
208 AcpiUtGetTypeName (((ACPI_NAMESPACE_NODE *) SourceDesc)->Type), in AcpiExDoDebugObject()
[all …]
H A Dexresnte.c163 ACPI_OPERAND_OBJECT *SourceDesc; in AcpiExResolveNodeToValue() local
177 SourceDesc = AcpiNsGetAttachedObject (Node); in AcpiExResolveNodeToValue()
181 Node, SourceDesc, AcpiUtGetTypeName (EntryType))); in AcpiExResolveNodeToValue()
189 SourceDesc = AcpiNsGetAttachedObject (Node); in AcpiExResolveNodeToValue()
208 if (!SourceDesc) in AcpiExResolveNodeToValue()
223 if (SourceDesc->Common.Type != ACPI_TYPE_PACKAGE) in AcpiExResolveNodeToValue()
226 AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExResolveNodeToValue()
230 Status = AcpiDsGetPackageArguments (SourceDesc); in AcpiExResolveNodeToValue()
235 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
243 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) in AcpiExResolveNodeToValue()
[all …]
H A Dexstoren.c151 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; in AcpiExResolveObject() local
180 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) in AcpiExResolveObject()
200 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) && in AcpiExResolveObject()
201 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) && in AcpiExResolveObject()
202 (SourceDesc->Common.Type != ACPI_TYPE_STRING) && in AcpiExResolveObject()
203 !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) && in AcpiExResolveObject()
204 (SourceDesc->Reference.Class== ACPI_REFCLASS_TABLE))) in AcpiExResolveObject()
210 AcpiUtGetObjectTypeName (SourceDesc), in AcpiExResolveObject()
280 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToObject() argument
289 ACPI_FUNCTION_TRACE_PTR (ExStoreObjectToObject, SourceDesc); in AcpiExStoreObjectToObject()
[all …]
H A Dexfield.c311 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExWriteDataToField() argument
327 if (!SourceDesc || !ObjDesc) in AcpiExWriteDataToField()
362 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) in AcpiExWriteDataToField()
366 AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExWriteDataToField()
382 if (SourceDesc->Buffer.Length < Length) in AcpiExWriteDataToField()
386 Length, SourceDesc->Buffer.Length)); in AcpiExWriteDataToField()
400 ACPI_MEMCPY (Buffer, SourceDesc->Buffer.Pointer, Length); in AcpiExWriteDataToField()
420 switch (SourceDesc->Common.Type) in AcpiExWriteDataToField()
423 Buffer = &SourceDesc->Integer.Value; in AcpiExWriteDataToField()
424 Length = sizeof (SourceDesc->Integer.Value); in AcpiExWriteDataToField()
[all …]
H A Dexstorob.c143 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreBufferToBuffer() argument
150 ACPI_FUNCTION_TRACE_PTR (ExStoreBufferToBuffer, SourceDesc); in AcpiExStoreBufferToBuffer()
155 if (SourceDesc == TargetDesc) in AcpiExStoreBufferToBuffer()
162 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer); in AcpiExStoreBufferToBuffer()
163 Length = SourceDesc->Buffer.Length; in AcpiExStoreBufferToBuffer()
227 TargetDesc->Buffer.Flags = SourceDesc->Buffer.Flags; in AcpiExStoreBufferToBuffer()
248 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreStringToString() argument
255 ACPI_FUNCTION_TRACE_PTR (ExStoreStringToString, SourceDesc); in AcpiExStoreStringToString()
260 if (SourceDesc == TargetDesc) in AcpiExStoreStringToString()
267 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->String.Pointer); in AcpiExStoreStringToString()
[all …]
H A Dexconvrt.c705 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExConvertToTargetType() argument
717 *ResultDesc = SourceDesc; in AcpiExConvertToTargetType()
740 if (DestinationType != SourceDesc->Common.Type) in AcpiExConvertToTargetType()
744 AcpiUtGetObjectTypeName (SourceDesc), in AcpiExConvertToTargetType()
764 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc, in AcpiExConvertToTargetType()
774 Status = AcpiExConvertToString (SourceDesc, ResultDesc, in AcpiExConvertToTargetType()
784 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc); in AcpiExConvertToTargetType()
/onnv-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutcopy.c160 ACPI_OPERAND_OBJECT *SourceDesc,
794 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiUtCopySimpleObject() argument
809 ACPI_MEMCPY ((char *) DestDesc, (char *) SourceDesc, in AcpiUtCopySimpleObject()
831 if ((SourceDesc->Buffer.Pointer) && in AcpiUtCopySimpleObject()
832 (SourceDesc->Buffer.Length)) in AcpiUtCopySimpleObject()
835 ACPI_ALLOCATE (SourceDesc->Buffer.Length); in AcpiUtCopySimpleObject()
844 SourceDesc->Buffer.Pointer, in AcpiUtCopySimpleObject()
845 SourceDesc->Buffer.Length); in AcpiUtCopySimpleObject()
855 if (SourceDesc->String.Pointer) in AcpiUtCopySimpleObject()
858 ACPI_ALLOCATE ((ACPI_SIZE) SourceDesc->String.Length + 1); in AcpiUtCopySimpleObject()
[all …]
/onnv-gate/usr/src/uts/intel/sys/acpi/
H A Dacinterp.h200 ACPI_OPERAND_OBJECT *SourceDesc,
245 ACPI_OPERAND_OBJECT *SourceDesc,
602 ACPI_OPERAND_OBJECT *SourceDesc,
622 ACPI_OPERAND_OBJECT *SourceDesc,
633 ACPI_OPERAND_OBJECT *SourceDesc,
638 ACPI_OPERAND_OBJECT *SourceDesc,
647 ACPI_OPERAND_OBJECT *SourceDesc,
652 ACPI_OPERAND_OBJECT *SourceDesc,
657 ACPI_OPERAND_OBJECT *SourceDesc,
662 ACPI_OPERAND_OBJECT *SourceDesc,
H A Dacutils.h396 ACPI_OPERAND_OBJECT *SourceDesc,