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

/opensolaris-onvv-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexresnte.c163 ACPI_OPERAND_OBJECT *SourceDesc; local
177 SourceDesc = AcpiNsGetAttachedObject (Node);
180 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Entry=%p SourceDesc=%p [%s]\n",
181 Node, SourceDesc, AcpiUtGetTypeName (EntryType)));
189 SourceDesc = AcpiNsGetAttachedObject (Node);
208 if (!SourceDesc)
223 if (SourceDesc->Common.Type != ACPI_TYPE_PACKAGE)
226 AcpiUtGetObjectTypeName (SourceDesc)));
230 Status = AcpiDsGetPackageArguments (SourceDesc);
235 ObjDesc = SourceDesc;
[all...]
H A Dexstore.c134 ACPI_OPERAND_OBJECT *SourceDesc,
149 * PARAMETERS: SourceDesc - Value to be stored
161 ACPI_OPERAND_OBJECT *SourceDesc,
168 ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc);
187 if (!SourceDesc)
193 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND)
196 AcpiUtGetObjectTypeName (SourceDesc)));
198 if (!AcpiUtValidInternalObject (SourceDesc))
201 "%p, Invalid Internal Object!\n", SourceDesc));
205 else if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc)
160 AcpiExDoDebugObject( ACPI_OPERAND_OBJECT *SourceDesc, UINT32 Level, UINT32 Index) argument
378 AcpiExStore( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc, ACPI_WALK_STATE *WalkState) argument
523 AcpiExStoreObjectToIndex( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *IndexDesc, ACPI_WALK_STATE *WalkState) argument
701 AcpiExStoreObjectToNode( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_NAMESPACE_NODE *Node, ACPI_WALK_STATE *WalkState, UINT8 ImplicitConversion) argument
[all...]
H A Dexstoren.c151 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; local
180 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE)
200 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) &&
201 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) &&
202 (SourceDesc->Common.Type != ACPI_TYPE_STRING) &&
203 !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) &&
204 (SourceDesc->Reference.Class== ACPI_REFCLASS_TABLE)))
210 AcpiUtGetObjectTypeName (SourceDesc),
247 * PARAMETERS: SourceDesc - Object to store
272 * Assumes parameters are already validated. NOTE: SourceDesc
279 AcpiExStoreObjectToObject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc, ACPI_OPERAND_OBJECT **NewDesc, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Dexstorob.c132 * PARAMETERS: SourceDesc - Source object to copy
143 ACPI_OPERAND_OBJECT *SourceDesc,
150 ACPI_FUNCTION_TRACE_PTR (ExStoreBufferToBuffer, SourceDesc);
155 if (SourceDesc == TargetDesc)
160 /* We know that SourceDesc is a buffer by now */
162 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer);
163 Length = SourceDesc->Buffer.Length;
227 TargetDesc->Buffer.Flags = SourceDesc->Buffer.Flags;
237 * PARAMETERS: SourceDesc - Source object to copy
248 ACPI_OPERAND_OBJECT *SourceDesc,
142 AcpiExStoreBufferToBuffer( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *TargetDesc) argument
247 AcpiExStoreStringToString( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *TargetDesc) argument
[all...]
H A Dexfield.c299 * PARAMETERS: SourceDesc - Contains data to write
311 ACPI_OPERAND_OBJECT *SourceDesc,
327 if (!SourceDesc || !ObjDesc)
362 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER)
366 AcpiUtGetObjectTypeName (SourceDesc)));
382 if (SourceDesc->Buffer.Length < Length)
386 Length, SourceDesc->Buffer.Length));
400 ACPI_MEMCPY (Buffer, SourceDesc->Buffer.Pointer, Length);
420 switch (SourceDesc->Common.Type)
423 Buffer = &SourceDesc
310 AcpiExWriteDataToField( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ResultDesc) argument
[all...]
H A Dexconvrt.c692 * SourceDesc - Source object to be converted.
705 ACPI_OPERAND_OBJECT *SourceDesc,
717 *ResultDesc = SourceDesc;
740 if (DestinationType != SourceDesc->Common.Type)
744 AcpiUtGetObjectTypeName (SourceDesc),
764 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc,
774 Status = AcpiExConvertToString (SourceDesc, ResultDesc,
784 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc);
703 AcpiExConvertToTargetType( ACPI_OBJECT_TYPE DestinationType, ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT **ResultDesc, ACPI_WALK_STATE *WalkState) argument
/opensolaris-onvv-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,
[all...]
H A Dacutils.h396 ACPI_OPERAND_OBJECT *SourceDesc,
/opensolaris-onvv-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutcopy.c160 ACPI_OPERAND_OBJECT *SourceDesc,
782 * PARAMETERS: SourceDesc - The internal object to be copied
794 ACPI_OPERAND_OBJECT *SourceDesc,
809 ACPI_MEMCPY ((char *) DestDesc, (char *) SourceDesc,
831 if ((SourceDesc->Buffer.Pointer) &&
832 (SourceDesc->Buffer.Length))
835 ACPI_ALLOCATE (SourceDesc->Buffer.Length);
844 SourceDesc->Buffer.Pointer,
845 SourceDesc->Buffer.Length);
855 if (SourceDesc
793 AcpiUtCopySimpleObject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc) argument
1107 AcpiUtCopyIobjectToIobject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT **DestDesc, ACPI_WALK_STATE *WalkState) argument
[all...]

Completed in 118 milliseconds