HomeSort by: relevance | last modified time | path
    Searched refs:SourceDesc (Results 1 - 12 of 12) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/executer/
exdebug.c 58 * 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 == 1) &&
106 (*SourceDesc->String.Pointer == '\n'))
146 if (!SourceDesc)
152 if (ACPI_GET_DESCRIPTOR_TYPE (SourceDesc) == ACPI_DESC_TYPE_OPERAND
    [all...]
exresnte.c 88 ACPI_OPERAND_OBJECT *SourceDesc;
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...]
exstoren.c 76 ACPI_OPERAND_OBJECT *SourceDesc = *SourceDescPtr;
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
    [all...]
exstore.c 65 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, AcpiUtGetObjectTypeName (SourceDesc)))
    [all...]
exstorob.c 57 * 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,
    [all...]
exserial.c 108 * PARAMETERS: SourceDesc - Contains data to write. Expect to be
122 ACPI_OPERAND_OBJECT *SourceDesc,
141 if (SourceDesc->Common.Type != ACPI_TYPE_INTEGER)
148 AcpiUtGetTypeName (SourceDesc->Common.Type),
149 SourceDesc->Common.Type, (UINT32) SourceDesc->Integer.Value,
152 Buffer = &SourceDesc->Integer.Value;
291 * PARAMETERS: SourceDesc - Contains data to write
304 ACPI_OPERAND_OBJECT *SourceDesc,
337 if (SourceDesc->Common.Type != ACPI_TYPE_BUFFER
    [all...]
exfield.c 306 * PARAMETERS: SourceDesc - Contains data to write
318 ACPI_OPERAND_OBJECT *SourceDesc,
333 if (!SourceDesc || !ObjDesc)
358 Status = AcpiExWriteGpio (SourceDesc, ObjDesc, ResultDesc);
370 Status = AcpiExWriteSerialBus (SourceDesc, ObjDesc, ResultDesc);
387 SourceDesc->Buffer.Pointer, DataLength);
407 switch (SourceDesc->Common.Type)
411 Buffer = &SourceDesc->Integer.Value;
412 BufferLength = sizeof (SourceDesc->Integer.Value);
417 Buffer = SourceDesc->Buffer.Pointer
    [all...]
exconvrt.c 685 * SourceDesc - Source object to be converted.
698 ACPI_OPERAND_OBJECT *SourceDesc,
710 *ResultDesc = SourceDesc;
734 if (DestinationType != SourceDesc->Common.Type)
738 AcpiUtGetObjectTypeName (SourceDesc),
758 Status = AcpiExConvertToInteger (SourceDesc, ResultDesc,
767 Status = AcpiExConvertToString (SourceDesc, ResultDesc,
776 Status = AcpiExConvertToBuffer (SourceDesc, ResultDesc);
  /src/sys/external/bsd/acpica/dist/utilities/
utcopy.c 86 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->Buffer.Length)
    [all...]
  /src/sys/external/bsd/acpica/dist/include/
acinterp.h 132 ACPI_OPERAND_OBJECT *SourceDesc,
142 ACPI_OPERAND_OBJECT *SourceDesc,
225 ACPI_OPERAND_OBJECT *SourceDesc,
408 ACPI_OPERAND_OBJECT *SourceDesc,
419 ACPI_OPERAND_OBJECT *SourceDesc,
608 ACPI_OPERAND_OBJECT *SourceDesc,
625 ACPI_OPERAND_OBJECT *SourceDesc,
636 ACPI_OPERAND_OBJECT *SourceDesc,
641 ACPI_OPERAND_OBJECT *SourceDesc,
650 ACPI_OPERAND_OBJECT *SourceDesc,
    [all...]
acutils.h 427 ACPI_OPERAND_OBJECT *SourceDesc,
  /src/sys/external/bsd/acpica/dist/compiler/
aslstubs.c 201 ACPI_OPERAND_OBJECT *SourceDesc,
234 ACPI_OPERAND_OBJECT *SourceDesc,

Completed in 24 milliseconds