HomeSort by: relevance | last modified time | path
    Searched refs:Subtable (Results 1 - 11 of 11) 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...]
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...]
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...]
dtio.c 173 DT_SUBTABLE *Subtable,
186 DT_SUBTABLE *Subtable,
192 DT_SUBTABLE *Subtable,
873 * DESCRIPTION: Write one subtable of a binary ACPI table
879 DT_SUBTABLE *Subtable,
884 FlWriteFile (ASL_FILE_AML_OUTPUT, Subtable->Buffer, Subtable->Length);
1062 * DESCRIPTION: Info - dump a subtable tree entry with extra information.
1063 * Tree - dump a subtable tree formatted by depth indentation.
1069 DT_SUBTABLE *Subtable,
    [all...]
dtcompiler.h 361 DT_SUBTABLE *Subtable);
365 DT_SUBTABLE *Subtable);
378 DT_SUBTABLE *Subtable);
387 DT_SUBTABLE *Subtable);
497 DT_SUBTABLE *Subtable,
dtutils.c 162 DT_SUBTABLE *Subtable,
818 * Subtable - Subtable
820 * ReturnValue - Store the checksum of subtable
824 * DESCRIPTION: Get the checksum of subtable
830 DT_SUBTABLE *Subtable,
838 Checksum = AcpiUtChecksum (Subtable->Buffer, Subtable->Length);
954 * PARAMETERS: StartTable - Subtable in the tree where walking begins
961 * DESCRIPTION: Performs a depth-first walk of the subtable tre
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
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...]
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...]

Completed in 18 milliseconds