HomeSort by: relevance | last modified time | path
    Searched defs:Subtable (Results 1 - 8 of 8) sorted by relevancy

  /src/sys/external/bsd/acpica/dist/compiler/
dtsubtable.c 164 * RetSubtable - Returned newly created subtable
168 * DESCRIPTION: Create a subtable that is not listed with ACPI_DMTABLE_INFO
180 DT_SUBTABLE *Subtable;
184 Subtable = UtSubtableCacheCalloc ();
186 /* Create a new buffer for the subtable data */
189 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
190 memcpy (Subtable->Buffer, Buffer, Length);
192 Subtable->Length = Length;
193 Subtable->TotalLength = Length;
195 *RetSubtable = Subtable;
    [all...]
dttable.c 176 DT_SUBTABLE *Subtable;
196 /* Compile the "extended" part of the RSDP as a subtable */
199 &Subtable);
205 DtInsertSubtable (AslGbl_RootTable, Subtable);
209 RsdpExtension = ACPI_CAST_PTR (ACPI_RSDP_EXTENSION, Subtable->Buffer);
210 RsdpExtension->Length = AslGbl_RootTable->Length + Subtable->Length;
237 DT_SUBTABLE *Subtable;
252 &Subtable);
259 DtInsertSubtable (ParentTable, Subtable);
275 &Subtable);
    [all...]
dtcompile.c 401 DT_SUBTABLE *Subtable;
541 Subtable = NULL;
543 &Subtable);
549 DtInsertSubtable (AslGbl_RootTable, Subtable);
585 * DESCRIPTION: Compile a subtable
597 DT_SUBTABLE *Subtable;
621 /* Ignore optional subtable if name does not match */
636 Subtable = UtSubtableCacheCalloc ();
641 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
644 Subtable->Length = Length
    [all...]
dttable1.c 202 DT_SUBTABLE *Subtable;
223 &Subtable);
230 DtInsertSubtable (ParentTable, Subtable);
232 /* Everything past the error node header will be a subtable */
234 DtPushSubtable (Subtable);
240 ErrorNodeHeader = ACPI_CAST_PTR (ACPI_AEST_HEADER, Subtable->Buffer);
301 AcpiOsPrintf ("Unknown AEST Subtable Type: %X\n",
306 Status = DtCompileTable (PFieldList, InfoTable, &Subtable);
314 Offset += Subtable->Length;
318 DtInsertSubtable (ParentTable, Subtable);
    [all...]
dttable2.c 177 DT_SUBTABLE *Subtable;
191 /* LPIT Subtable header */
194 &Subtable);
201 DtInsertSubtable (ParentTable, Subtable);
202 DtPushSubtable (Subtable);
204 LpitHeader = ACPI_CAST_PTR (ACPI_LPIT_HEADER, Subtable->Buffer);
219 /* LPIT Subtable */
221 Status = DtCompileTable (PFieldList, InfoTable, &Subtable);
228 DtInsertSubtable (ParentTable, Subtable);
253 DT_SUBTABLE *Subtable;
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
dmtbdump3.c 283 ACPI_SUBTABLE_HEADER *Subtable;
297 Subtable = ACPI_ADD_PTR (ACPI_SUBTABLE_HEADER, Table, Offset);
300 /* Common subtable header */
303 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable,
304 Subtable->Length, AcpiDmTableInfoSratHdr);
310 switch (Subtable->Type)
353 AcpiOsPrintf ("\n**** Unknown SRAT subtable type 0x%X\n",
354 Subtable->Type);
358 if (!Subtable->Length)
360 AcpiOsPrintf ("Invalid zero length subtable\n")
    [all...]
dmtbdump1.c 192 ACPI_AEST_HEADER *Subtable;
209 /* Dump the common error node (subtable) header */
220 /* Setup the node-specific subtable based on the header Type field */
276 AcpiOsPrintf ("\n**** Unknown AEST Error Subtable type 0x%X\n",
284 Subtable = ACPI_ADD_PTR (ACPI_AEST_HEADER, Table, Offset);
287 /* Dump the node-specific subtable */
289 Status = AcpiDmDumpTable (Table->Length, Offset, Subtable, Length,
308 ProcessorSubtable = ACPI_CAST_PTR (ACPI_AEST_PROCESSOR, Subtable);
312 /* Setup the Resource Substructure subtable */
339 /* Dump the resource substructure subtable */
    [all...]
dmtbdump2.c 234 /* Common subtable header */
322 /* Dump the node subtable header */
473 /* Point to next node subtable */
492 * <Main subtable - virtualization info>
514 ACPI_IVRS_HEADER *Subtable;
528 Subtable = ACPI_ADD_PTR (ACPI_IVRS_HEADER, Table, Offset);
532 switch (Subtable->Type)
563 AcpiOsPrintf ("\n**** Unknown IVRS subtable type 0x%X\n",
564 Subtable->Type);
568 if (!Subtable->Length
    [all...]

Completed in 19 milliseconds