Searched defs:SourceDesc (Results 1 - 8 of 8) sorted by relevance

/illumos-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexstorob.c57 * PARAMETERS: SourceDesc - Source object to copy
68 ACPI_OPERAND_OBJECT *SourceDesc,
75 ACPI_FUNCTION_TRACE_PTR (ExStoreBufferToBuffer, SourceDesc);
80 if (SourceDesc == TargetDesc)
85 /* We know that SourceDesc is a buffer by now */
87 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer);
88 Length = SourceDesc->Buffer.Length;
152 TargetDesc->Buffer.Flags = SourceDesc->Buffer.Flags;
162 * PARAMETERS: SourceDesc - Source object to copy
173 ACPI_OPERAND_OBJECT *SourceDesc,
67 AcpiExStoreBufferToBuffer( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *TargetDesc) argument
172 AcpiExStoreStringToString( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *TargetDesc) argument
[all...]
H A Dexdebug.c58 * PARAMETERS: SourceDesc - Object to be output to "Debug Object"
78 ACPI_OPERAND_OBJECT *SourceDesc,
88 ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc);
101 if (SourceDesc &&
102 (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND) &&
103 (SourceDesc->Common.Type == ACPI_TYPE_STRING))
105 if ((SourceDesc->String.Length == 0) ||
106 ((SourceDesc->String.Length == 1) &&
107 (*SourceDesc->String.Pointer == '\n')))
147 if (!SourceDesc)
77 AcpiExDoDebugObject( ACPI_OPERAND_OBJECT *SourceDesc, UINT32 Level, UINT32 Index) argument
[all...]
H A Dexresnte.c88 ACPI_OPERAND_OBJECT *SourceDesc; local
102 SourceDesc = AcpiNsGetAttachedObject (Node);
105 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Entry=%p SourceDesc=%p [%s]\n",
106 Node, SourceDesc, AcpiUtGetTypeName (EntryType)));
114 SourceDesc = AcpiNsGetAttachedObject (Node);
133 if (!SourceDesc)
148 if (SourceDesc->Common.Type != ACPI_TYPE_PACKAGE)
151 AcpiUtGetObjectTypeName (SourceDesc)));
155 Status = AcpiDsGetPackageArguments (SourceDesc);
160 ObjDesc = SourceDesc;
[all...]
H A Dexfield.c350 * PARAMETERS: SourceDesc - Contains data to write
362 ACPI_OPERAND_OBJECT *SourceDesc,
379 if (!SourceDesc || !ObjDesc)
417 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER)
422 AcpiUtGetObjectTypeName (SourceDesc)));
456 if (SourceDesc->Buffer.Length < Length)
461 Length, SourceDesc->Buffer.Length));
475 memcpy (Buffer, SourceDesc->Buffer.Pointer, Length);
503 if (SourceDesc->Common.Type != ACPI_TYPE_INTEGER)
510 AcpiUtGetTypeName (SourceDesc
361 AcpiExWriteDataToField( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ResultDesc) argument
[all...]
H A Dexstoren.c76 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; local
103 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE)
123 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) &&
124 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) &&
125 (SourceDesc->Common.Type != ACPI_TYPE_STRING) &&
126 !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) &&
127 (SourceDesc->Reference.Class== ACPI_REFCLASS_TABLE)))
133 AcpiUtGetObjectTypeName (SourceDesc),
167 * PARAMETERS: SourceDesc - Object to store
192 * Assumes parameters are already validated. NOTE: SourceDesc
199 AcpiExStoreObjectToObject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc, ACPI_OPERAND_OBJECT **NewDesc, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Dexstore.c65 ACPI_OPERAND_OBJECT *SourceDesc,
74 * PARAMETERS: *SourceDesc - Value to be stored
82 * DESCRIPTION: Store the value described by SourceDesc into the location
92 ACPI_OPERAND_OBJECT *SourceDesc,
105 if (!SourceDesc || !DestDesc)
119 Status = AcpiExStoreObjectToNode (SourceDesc,
170 Status = AcpiExStoreObjectToNode (SourceDesc,
179 Status = AcpiExStoreObjectToIndex (SourceDesc, RefDesc, WalkState);
188 RefDesc->Reference.Value, SourceDesc, WalkState);
198 SourceDesc, AcpiUtGetObjectTypeNam
91 AcpiExStore( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc, ACPI_WALK_STATE *WalkState) argument
232 AcpiExStoreObjectToIndex( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *IndexDesc, ACPI_WALK_STATE *WalkState) argument
412 AcpiExStoreObjectToNode( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_NAMESPACE_NODE *Node, ACPI_WALK_STATE *WalkState, UINT8 ImplicitConversion) argument
613 AcpiExStoreDirectToNode( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_NAMESPACE_NODE *Node, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Dexconvrt.c614 * SourceDesc - Source object to be converted.
627 ACPI_OPERAND_OBJECT *SourceDesc,
639 *ResultDesc = SourceDesc;
663 if (DestinationType != SourceDesc->Common.Type)
667 AcpiUtGetObjectTypeName (SourceDesc),
687 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc, 16);
695 Status = AcpiExConvertToString (SourceDesc, ResultDesc,
704 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc);
625 AcpiExConvertToTargetType( ACPI_OBJECT_TYPE DestinationType, ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT **ResultDesc, ACPI_WALK_STATE *WalkState) argument
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutcopy.c86 ACPI_OPERAND_OBJECT *SourceDesc,
702 * PARAMETERS: SourceDesc - The internal object to be copied
714 ACPI_OPERAND_OBJECT *SourceDesc,
733 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_NAMED)
739 ACPI_CAST_PTR (char, SourceDesc), CopySize);
760 if ((SourceDesc->Buffer.Pointer) &&
761 (SourceDesc->Buffer.Length))
764 ACPI_ALLOCATE (SourceDesc->Buffer.Length);
773 SourceDesc->Buffer.Pointer, SourceDesc
713 AcpiUtCopySimpleObject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc) argument
1037 AcpiUtCopyIobjectToIobject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT **DestDesc, ACPI_WALK_STATE *WalkState) argument
[all...]

Completed in 76 milliseconds