Lines Matching defs:Table
192 * DESCRIPTION: Check for valid ACPI table header
254 * PARAMETERS: Header - An ACPI table header
274 printf ("OEM Table ID : %.8s\n", Header->OemTableId);
294 printf ("OEM Table ID %8.8s : %.8s\n", Header->OemTableId, Header2->OemTableId);
306 * DESCRIPTION: Display an ACPI table header
330 printf ("File %s does not contain a valid ACPI table header\n", FilePath);
347 * DESCRIPTION: Compute proper checksum for an ACPI table
356 ACPI_TABLE_HEADER *Table;
371 printf ("File %s does not contain a valid ACPI table header\n", FilePath);
385 /* Allocate a buffer to hold the entire table */
387 Table = AcpiOsAllocate (Header1.Length);
388 if (!Table)
390 printf ("Could not allocate buffer for table\n");
394 /* Read the entire table, including header */
397 Actual = fread (Table, 1, Header1.Length, File);
400 printf ("Could not read table, length %u\n", Header1.Length);
404 /* Compute the checksum for the table */
406 Table->Checksum = 0;
408 Checksum = (UINT8) (0 - AcpiTbSumTable (Table, Table->Length));
434 printf ("Could not write updated table header\n");
441 AcpiOsFree (Table);
496 printf ("File %s does not contain an ACPI table header\n", File1Path);
503 printf ("File %s does not contain an ACPI table header\n", File2Path);
513 /* Table signatures must match */
517 printf ("Table signatures do not match\n");