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

/freebsd-13-stable/sys/contrib/dev/acpica/components/executer/
H A Dexdebug.c166 * PARAMETERS: SourceDesc - Object to be output to "Debug Object"
186 ACPI_OPERAND_OBJECT *SourceDesc,
196 ACPI_FUNCTION_TRACE_PTR (ExDoDebugObject, SourceDesc);
209 if (SourceDesc &&
210 (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND) &&
211 (SourceDesc->Common.Type == ACPI_TYPE_STRING))
213 if ((SourceDesc->String.Length == 1) &&
214 (*SourceDesc->String.Pointer == '\n'))
254 if (!SourceDesc)
260 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc)
185 AcpiExDoDebugObject( ACPI_OPERAND_OBJECT *SourceDesc, UINT32 Level, UINT32 Index) argument
[all...]
H A Dexresnte.c196 ACPI_OPERAND_OBJECT *SourceDesc; local
210 SourceDesc = AcpiNsGetAttachedObject (Node);
213 ACPI_DEBUG_PRINT ((ACPI_DB_EXEC, "Entry=%p SourceDesc=%p [%s]\n",
214 Node, SourceDesc, AcpiUtGetTypeName (EntryType)));
222 SourceDesc = AcpiNsGetAttachedObject (Node);
241 if (!SourceDesc)
256 if (SourceDesc->Common.Type != ACPI_TYPE_PACKAGE)
259 AcpiUtGetObjectTypeName (SourceDesc)));
263 Status = AcpiDsGetPackageArguments (SourceDesc);
268 ObjDesc = SourceDesc;
[all...]
H A Dexstoren.c184 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr; local
211 if (SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE)
231 if ((SourceDesc->Common.Type != ACPI_TYPE_INTEGER) &&
232 (SourceDesc->Common.Type != ACPI_TYPE_BUFFER) &&
233 (SourceDesc->Common.Type != ACPI_TYPE_STRING) &&
234 !((SourceDesc->Common.Type == ACPI_TYPE_LOCAL_REFERENCE) &&
235 (SourceDesc->Reference.Class== ACPI_REFCLASS_TABLE)))
241 AcpiUtGetObjectTypeName (SourceDesc),
275 * PARAMETERS: SourceDesc - Object to store
300 * Assumes parameters are already validated. NOTE: SourceDesc
307 AcpiExStoreObjectToObject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc, ACPI_OPERAND_OBJECT **NewDesc, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Dexstore.c173 ACPI_OPERAND_OBJECT *SourceDesc,
182 * PARAMETERS: *SourceDesc - Value to be stored
190 * DESCRIPTION: Store the value described by SourceDesc into the location
200 ACPI_OPERAND_OBJECT *SourceDesc,
213 if (!SourceDesc || !DestDesc)
227 Status = AcpiExStoreObjectToNode (SourceDesc,
278 Status = AcpiExStoreObjectToNode (SourceDesc,
287 Status = AcpiExStoreObjectToIndex (SourceDesc, RefDesc, WalkState);
296 RefDesc->Reference.Value, SourceDesc, WalkState);
306 SourceDesc, AcpiUtGetObjectTypeNam
199 AcpiExStore( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc, ACPI_WALK_STATE *WalkState) argument
340 AcpiExStoreObjectToIndex( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *IndexDesc, ACPI_WALK_STATE *WalkState) argument
520 AcpiExStoreObjectToNode( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_NAMESPACE_NODE *Node, ACPI_WALK_STATE *WalkState, UINT8 ImplicitConversion) argument
721 AcpiExStoreDirectToNode( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_NAMESPACE_NODE *Node, ACPI_WALK_STATE *WalkState) argument
[all...]
H A Dexstorob.c165 * PARAMETERS: SourceDesc - Source object to copy
176 ACPI_OPERAND_OBJECT *SourceDesc,
183 ACPI_FUNCTION_TRACE_PTR (ExStoreBufferToBuffer, SourceDesc);
188 if (SourceDesc == TargetDesc)
193 /* We know that SourceDesc is a buffer by now */
195 Buffer = ACPI_CAST_PTR (UINT8, SourceDesc->Buffer.Pointer);
196 Length = SourceDesc->Buffer.Length;
260 TargetDesc->Buffer.Flags = SourceDesc->Buffer.Flags;
270 * PARAMETERS: SourceDesc - Source object to copy
281 ACPI_OPERAND_OBJECT *SourceDesc,
175 AcpiExStoreBufferToBuffer( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *TargetDesc) argument
280 AcpiExStoreStringToString( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *TargetDesc) argument
[all...]
H A Dexfield.c412 * PARAMETERS: SourceDesc - Contains data to write
424 ACPI_OPERAND_OBJECT *SourceDesc,
439 if (!SourceDesc || !ObjDesc)
464 Status = AcpiExWriteGpio (SourceDesc, ObjDesc, ResultDesc);
474 Status = AcpiExWriteSerialBus (SourceDesc, ObjDesc, ResultDesc);
491 SourceDesc->Buffer.Pointer, DataLength);
513 switch (SourceDesc->Common.Type)
517 Buffer = &SourceDesc->Integer.Value;
518 BufferLength = sizeof (SourceDesc->Integer.Value);
523 Buffer = SourceDesc
423 AcpiExWriteDataToField( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ResultDesc) argument
[all...]
H A Dexserial.c216 * PARAMETERS: SourceDesc - Contains data to write. Expect to be
230 ACPI_OPERAND_OBJECT *SourceDesc,
249 if (SourceDesc->Common.Type != ACPI_TYPE_INTEGER)
256 AcpiUtGetTypeName (SourceDesc->Common.Type),
257 SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value,
260 Buffer = &SourceDesc->Integer.Value;
387 * PARAMETERS: SourceDesc - Contains data to write
400 ACPI_OPERAND_OBJECT *SourceDesc,
433 if (SourceDesc
229 AcpiExWriteGpio( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ReturnBuffer) argument
399 AcpiExWriteSerialBus( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ReturnBuffer) argument
[all...]
H A Dexconvrt.c751 * SourceDesc - Source object to be converted.
764 ACPI_OPERAND_OBJECT *SourceDesc,
776 *ResultDesc = SourceDesc;
800 if (DestinationType != SourceDesc->Common.Type)
804 AcpiUtGetObjectTypeName (SourceDesc),
824 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc,
833 Status = AcpiExConvertToString (SourceDesc, ResultDesc,
842 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc);
762 AcpiExConvertToTargetType( ACPI_OBJECT_TYPE DestinationType, ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT **ResultDesc, ACPI_WALK_STATE *WalkState) argument
/freebsd-13-stable/sys/contrib/dev/acpica/components/utilities/
H A Dutcopy.c194 ACPI_OPERAND_OBJECT *SourceDesc,
810 * PARAMETERS: SourceDesc - The internal object to be copied
822 ACPI_OPERAND_OBJECT *SourceDesc,
841 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_NAMED)
847 ACPI_CAST_PTR (char, SourceDesc), CopySize);
868 if ((SourceDesc->Buffer.Pointer) &&
869 (SourceDesc->Buffer.Length))
872 ACPI_ALLOCATE (SourceDesc->Buffer.Length);
881 SourceDesc->Buffer.Pointer, SourceDesc
821 AcpiUtCopySimpleObject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *DestDesc) argument
1145 AcpiUtCopyIobjectToIobject( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT **DestDesc, ACPI_WALK_STATE *WalkState) argument
[all...]
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacinterp.h240 ACPI_OPERAND_OBJECT *SourceDesc,
250 ACPI_OPERAND_OBJECT *SourceDesc,
329 ACPI_OPERAND_OBJECT *SourceDesc,
512 ACPI_OPERAND_OBJECT *SourceDesc,
523 ACPI_OPERAND_OBJECT *SourceDesc,
712 ACPI_OPERAND_OBJECT *SourceDesc,
729 ACPI_OPERAND_OBJECT *SourceDesc,
740 ACPI_OPERAND_OBJECT *SourceDesc,
745 ACPI_OPERAND_OBJECT *SourceDesc,
754 ACPI_OPERAND_OBJECT *SourceDesc,
[all...]
H A Dacutils.h507 ACPI_OPERAND_OBJECT *SourceDesc,
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslstubs.c309 ACPI_OPERAND_OBJECT *SourceDesc,
342 ACPI_OPERAND_OBJECT *SourceDesc,
308 AcpiExWriteDataToField( ACPI_OPERAND_OBJECT *SourceDesc, ACPI_OPERAND_OBJECT *ObjDesc, ACPI_OPERAND_OBJECT **ResultDesc) argument
341 AcpiExDoDebugObject( ACPI_OPERAND_OBJECT *SourceDesc, UINT32 Level, UINT32 Index) argument

Completed in 129 milliseconds