/titanic_50/usr/src/uts/intel/io/acpica/executer/ |
H A D | exdebug.c | 78 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExDoDebugObject() argument 88 ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc); in AcpiExDoDebugObject() 101 if (SourceDesc && in AcpiExDoDebugObject() 102 (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND) && in AcpiExDoDebugObject() 103 (SourceDesc->Common.Type == ACPI_TYPE_STRING)) in AcpiExDoDebugObject() 105 if ((SourceDesc->String.Length == 0) || in AcpiExDoDebugObject() 106 ((SourceDesc->String.Length == 1) && in AcpiExDoDebugObject() 107 (*SourceDesc->String.Pointer == '\n'))) in AcpiExDoDebugObject() 147 if (!SourceDesc) in AcpiExDoDebugObject() 153 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND) in AcpiExDoDebugObject() [all …]
|
H A D | exresnte.c | 88 ACPI_OPERAND_OBJECT *SourceDesc; in AcpiExResolveNodeToValue() local 102 SourceDesc = AcpiNsGetAttachedObject (Node); in AcpiExResolveNodeToValue() 106 Node, SourceDesc, AcpiUtGetTypeName (EntryType))); in AcpiExResolveNodeToValue() 114 SourceDesc = AcpiNsGetAttachedObject (Node); in AcpiExResolveNodeToValue() 133 if (!SourceDesc) in AcpiExResolveNodeToValue() 148 if (SourceDesc->Common.Type != ACPI_TYPE_PACKAGE) in AcpiExResolveNodeToValue() 151 AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExResolveNodeToValue() 155 Status = AcpiDsGetPackageArguments (SourceDesc); in AcpiExResolveNodeToValue() 160 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue() 167 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) in AcpiExResolveNodeToValue() [all …]
|
H A D | exstore.c | 65 ACPI_OPERAND_OBJECT *SourceDesc, 92 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStore() argument 105 if (!SourceDesc || !DestDesc) in AcpiExStore() 119 Status = AcpiExStoreObjectToNode (SourceDesc, in AcpiExStore() 170 Status = AcpiExStoreObjectToNode (SourceDesc, in AcpiExStore() 179 Status = AcpiExStoreObjectToIndex (SourceDesc, RefDesc, WalkState); in AcpiExStore() 188 RefDesc->Reference.Value, SourceDesc, WalkState); in AcpiExStore() 198 SourceDesc, AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExStore() 200 ACPI_DEBUG_OBJECT (SourceDesc, 0, 0); in AcpiExStore() 233 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToIndex() argument [all …]
|
H A D | exstoren.c | 76 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; in AcpiExResolveObject() local 103 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) in AcpiExResolveObject() 123 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) && in AcpiExResolveObject() 124 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) && in AcpiExResolveObject() 125 (SourceDesc->Common.Type != ACPI_TYPE_STRING) && in AcpiExResolveObject() 126 !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) && in AcpiExResolveObject() 127 (SourceDesc->Reference.Class== ACPI_REFCLASS_TABLE))) in AcpiExResolveObject() 133 AcpiUtGetObjectTypeName (SourceDesc), in AcpiExResolveObject() 200 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToObject() argument 209 ACPI_FUNCTION_TRACE_PTR (ExStoreObjectToObject, SourceDesc); in AcpiExStoreObjectToObject() [all …]
|
H A D | exfield.c | 362 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExWriteDataToField() argument 379 if (!SourceDesc || !ObjDesc) in AcpiExWriteDataToField() 417 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) in AcpiExWriteDataToField() 422 AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExWriteDataToField() 456 if (SourceDesc->Buffer.Length < Length) in AcpiExWriteDataToField() 461 Length, SourceDesc->Buffer.Length)); in AcpiExWriteDataToField() 475 memcpy (Buffer, SourceDesc->Buffer.Pointer, Length); in AcpiExWriteDataToField() 503 if (SourceDesc->Common.Type != ACPI_TYPE_INTEGER) in AcpiExWriteDataToField() 510 AcpiUtGetTypeName (SourceDesc->Common.Type), in AcpiExWriteDataToField() 511 SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value, in AcpiExWriteDataToField() [all …]
|
H A D | exstorob.c | 68 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreBufferToBuffer() argument 75 ACPI_FUNCTION_TRACE_PTR (ExStoreBufferToBuffer, SourceDesc); in AcpiExStoreBufferToBuffer() 80 if (SourceDesc == TargetDesc) in AcpiExStoreBufferToBuffer() 87 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer); in AcpiExStoreBufferToBuffer() 88 Length = SourceDesc->Buffer.Length; in AcpiExStoreBufferToBuffer() 152 TargetDesc->Buffer.Flags = SourceDesc->Buffer.Flags; in AcpiExStoreBufferToBuffer() 173 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreStringToString() argument 180 ACPI_FUNCTION_TRACE_PTR (ExStoreStringToString, SourceDesc); in AcpiExStoreStringToString() 185 if (SourceDesc == TargetDesc) in AcpiExStoreStringToString() 192 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->String.Pointer); in AcpiExStoreStringToString() [all …]
|
H A D | exconvrt.c | 627 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExConvertToTargetType() argument 639 *ResultDesc = SourceDesc; in AcpiExConvertToTargetType() 663 if (DestinationType != SourceDesc->Common.Type) in AcpiExConvertToTargetType() 667 AcpiUtGetObjectTypeName (SourceDesc), in AcpiExConvertToTargetType() 687 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc, 16); in AcpiExConvertToTargetType() 695 Status = AcpiExConvertToString (SourceDesc, ResultDesc, in AcpiExConvertToTargetType() 704 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc); in AcpiExConvertToTargetType()
|
/titanic_50/usr/src/uts/intel/io/acpica/utilities/ |
H A D | utcopy.c | 86 ACPI_OPERAND_OBJECT *SourceDesc, 714 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiUtCopySimpleObject() argument 733 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_NAMED) in AcpiUtCopySimpleObject() 739 ACPI_CAST_PTR (char, SourceDesc), CopySize); in AcpiUtCopySimpleObject() 760 if ((SourceDesc->Buffer.Pointer) && in AcpiUtCopySimpleObject() 761 (SourceDesc->Buffer.Length)) in AcpiUtCopySimpleObject() 764 ACPI_ALLOCATE (SourceDesc->Buffer.Length); in AcpiUtCopySimpleObject() 773 SourceDesc->Buffer.Pointer, SourceDesc->Buffer.Length); in AcpiUtCopySimpleObject() 783 if (SourceDesc->String.Pointer) in AcpiUtCopySimpleObject() 786 ACPI_ALLOCATE ((ACPI_SIZE) SourceDesc->String.Length + 1); in AcpiUtCopySimpleObject() [all …]
|
/titanic_50/usr/src/uts/intel/sys/acpi/ |
H A D | acinterp.h | 132 ACPI_OPERAND_OBJECT *SourceDesc, 142 ACPI_OPERAND_OBJECT *SourceDesc, 216 ACPI_OPERAND_OBJECT *SourceDesc, 573 ACPI_OPERAND_OBJECT *SourceDesc, 593 ACPI_OPERAND_OBJECT *SourceDesc, 604 ACPI_OPERAND_OBJECT *SourceDesc, 609 ACPI_OPERAND_OBJECT *SourceDesc, 618 ACPI_OPERAND_OBJECT *SourceDesc, 623 ACPI_OPERAND_OBJECT *SourceDesc, 628 ACPI_OPERAND_OBJECT *SourceDesc, [all …]
|
H A D | acutils.h | 343 ACPI_OPERAND_OBJECT *SourceDesc,
|