Lines Matching defs:Table

63     ACPI_TABLE_HEADER       *Table);
67 ACPI_TABLE_HEADER *Table,
136 * Table - Pointer to the raw table
148 ACPI_TABLE_HEADER *Table)
163 AcpiOsPrintf (" * Original Table Header:\n");
164 AcpiOsPrintf (" * Signature \"%4.4s\"\n", Table->Signature);
165 AcpiOsPrintf (" * Length 0x%8.8X (%u)\n", Table->Length, Table->Length);
169 AcpiOsPrintf (" * Revision 0x%2.2X", Table->Revision);
171 switch (Table->Revision)
182 if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT))
195 AcpiOsPrintf ("\n * Checksum 0x%2.2X", Table->Checksum);
197 Checksum = AcpiUtChecksum (ACPI_CAST_PTR (UINT8, Table), Table->Length);
201 (UINT8) (Table->Checksum - Checksum));
205 AcpiOsPrintf (" * OEM ID \"%.6s\"\n", Table->OemId);
206 AcpiOsPrintf (" * OEM Table ID \"%.8s\"\n", Table->OemTableId);
207 AcpiOsPrintf (" * OEM Revision 0x%8.8X (%u)\n", Table->OemRevision, Table->OemRevision);
208 AcpiOsPrintf (" * Compiler ID \"%.4s\"\n", Table->AslCompilerId);
209 AcpiOsPrintf (" * Compiler Version 0x%8.8X (%u)\n", Table->AslCompilerRevision, Table->AslCompilerRevision);
229 Table->Signature, Table->Revision,
230 Table->OemId, Table->OemTableId, Table->OemRevision);
239 * Table - Pointer to the raw table
250 ACPI_TABLE_HEADER *Table)
261 AdCreateTableHeader (Filename, Table);
270 AcpiUtDebugDumpBuffer ((UINT8 *) Table, sizeof (ACPI_TABLE_HEADER),
273 AcpiOsPrintf ("Table Body (Length 0x%X)\n", Table->Length);
274 AcpiUtDebugDumpBuffer (((UINT8 *) Table + sizeof (ACPI_TABLE_HEADER)),
275 Table->Length, DB_BYTE_DISPLAY, ACPI_UINT32_MAX);
286 * PARAMETERS: Table - Table header
297 ACPI_TABLE_HEADER *Table,
312 AcpiTbInitTableDescriptor (TableDesc, ACPI_PTR_TO_PHYSADDR (Table),
313 ACPI_TABLE_ORIGIN_INTERNAL_VIRTUAL, Table);
354 /* Store DSDT in the Table Manager */
371 * PARAMETERS: Table - Pointer to the raw table
384 ACPI_TABLE_HEADER *Table,
396 if (!Table)
403 fprintf (stderr, "Pass 1 parse of [%4.4s]\n", (char *) Table->Signature);
405 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
406 AmlStart = ((UINT8 *) Table + sizeof (ACPI_TABLE_HEADER));
408 AcpiUtSetIntegerWidth (Table->Revision);
460 Status = AdStoreTable (Table, &TableIndex);
480 fprintf (stderr, "Pass 2 parse of [%4.4s]\n", (char *) Table->Signature);