Home
last modified time | relevance | path

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

/third_party/lib/acpica/source/components/executer/
A Dexdebug.c78 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExDoDebugObject() argument
101 if (SourceDesc && in AcpiExDoDebugObject()
105 if ((SourceDesc->String.Length == 0) || in AcpiExDoDebugObject()
147 if (!SourceDesc) in AcpiExDoDebugObject()
173 SourceDesc); in AcpiExDoDebugObject()
183 switch (SourceDesc->Common.Type) in AcpiExDoDebugObject()
205 (SourceDesc->Buffer.Length < 256) ? in AcpiExDoDebugObject()
217 SourceDesc->Package.Count); in AcpiExDoDebugObject()
234 switch (SourceDesc->Reference.Class) in AcpiExDoDebugObject()
257 if (SourceDesc->Reference.Node) in AcpiExDoDebugObject()
[all …]
A Dexresnte.c88 ACPI_OPERAND_OBJECT *SourceDesc; in AcpiExResolveNodeToValue() local
133 if (!SourceDesc) in AcpiExResolveNodeToValue()
160 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
179 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
195 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
210 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
221 Node, SourceDesc, EntryType)); in AcpiExResolveNodeToValue()
236 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
251 switch (SourceDesc->Reference.Class) in AcpiExResolveNodeToValue()
259 ObjDesc = SourceDesc; in AcpiExResolveNodeToValue()
[all …]
A Dexstore.c65 ACPI_OPERAND_OBJECT *SourceDesc,
92 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStore() argument
105 if (!SourceDesc || !DestDesc) in AcpiExStore()
198 SourceDesc, AcpiUtGetObjectTypeName (SourceDesc))); in AcpiExStore()
233 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToIndex() argument
271 NewDesc = SourceDesc; in AcpiExStoreObjectToIndex()
338 switch (SourceDesc->Common.Type) in AcpiExStoreObjectToIndex()
413 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToNode() argument
433 SourceDesc, AcpiUtGetObjectTypeName (SourceDesc), in AcpiExStoreObjectToNode()
614 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreDirectToNode() argument
[all …]
A Dexstoren.c76 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; in AcpiExResolveObject() local
123 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) && in AcpiExResolveObject()
124 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) && in AcpiExResolveObject()
133 AcpiUtGetObjectTypeName (SourceDesc), in AcpiExResolveObject()
200 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToObject() argument
212 ActualSrcDesc = SourceDesc; in AcpiExStoreObjectToObject()
224 if (SourceDesc->Common.Type != DestDesc->Common.Type) in AcpiExStoreObjectToObject()
236 SourceDesc, &ActualSrcDesc, WalkState); in AcpiExStoreObjectToObject()
242 if (SourceDesc == ActualSrcDesc) in AcpiExStoreObjectToObject()
248 *NewDesc = SourceDesc; in AcpiExStoreObjectToObject()
[all …]
A Dexstorob.c68 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 …]
A Dexfield.c362 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExWriteDataToField() argument
379 if (!SourceDesc || !ObjDesc) in AcpiExWriteDataToField()
511 SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value, in AcpiExWriteDataToField()
514 Buffer = &SourceDesc->Integer.Value; in AcpiExWriteDataToField()
530 switch (SourceDesc->Common.Type) in AcpiExWriteDataToField()
534 Buffer = &SourceDesc->Integer.Value; in AcpiExWriteDataToField()
540 Buffer = SourceDesc->Buffer.Pointer; in AcpiExWriteDataToField()
541 Length = SourceDesc->Buffer.Length; in AcpiExWriteDataToField()
546 Buffer = SourceDesc->String.Pointer; in AcpiExWriteDataToField()
547 Length = SourceDesc->String.Length; in AcpiExWriteDataToField()
[all …]
A Dexconvrt.c626 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExConvertToTargetType() argument
638 *ResultDesc = SourceDesc; in AcpiExConvertToTargetType()
662 if (DestinationType != SourceDesc->Common.Type) in AcpiExConvertToTargetType()
666 AcpiUtGetObjectTypeName (SourceDesc), in AcpiExConvertToTargetType()
686 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc, 16); in AcpiExConvertToTargetType()
694 Status = AcpiExConvertToString (SourceDesc, ResultDesc, in AcpiExConvertToTargetType()
703 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc); in AcpiExConvertToTargetType()
/third_party/lib/acpica/source/components/utilities/
A Dutcopy.c86 ACPI_OPERAND_OBJECT *SourceDesc,
714 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiUtCopySimpleObject() argument
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()
1038 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiUtCopyIobjectToIobject() argument
1058 if (SourceDesc->Common.Type == ACPI_TYPE_PACKAGE) in AcpiUtCopyIobjectToIobject()
[all …]
/third_party/lib/acpica/source/include/acpica/
A Dacinterp.h132 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 …]
A Dacutils.h306 ACPI_OPERAND_OBJECT *SourceDesc,
/third_party/lib/acpica/source/tools/acpinames/
A Danstubs.c81 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiUtCopyIobjectToIobject() argument
149 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExWriteDataToField() argument
158 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExStoreObjectToNode() argument
184 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExDoDebugObject() argument
/third_party/lib/acpica/source/compiler/
A Daslstubs.c179 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExWriteDataToField() argument
212 ACPI_OPERAND_OBJECT *SourceDesc, in AcpiExDoDebugObject() argument

Completed in 17 milliseconds