Lines Matching refs:table_header
149 struct acpi_table_header table_header; in acpi_ut_read_table() local
171 count = fread(&table_header, 1, sizeof(struct acpi_table_header), fp); in acpi_ut_read_table()
179 if (ACPI_VALIDATE_RSDP_SIG(table_header.signature)) { in acpi_ut_read_table()
187 status = acpi_tb_validate_table_header(&table_header); in acpi_ut_read_table()
196 if (table_header.length > file_size) { in acpi_ut_read_table()
199 table_header.length, file_size); in acpi_ut_read_table()
211 ((char *)table_header.signature, ACPI_SIG_DSDT) in acpi_ut_read_table()
212 && !ACPI_COMPARE_NAME((char *)table_header.signature, in acpi_ut_read_table()
214 && !ACPI_COMPARE_NAME((char *)table_header.signature, in acpi_ut_read_table()
218 (char *)table_header.signature); in acpi_ut_read_table()
219 ACPI_DUMP_BUFFER(&table_header, in acpi_ut_read_table()
225 *table_length = table_header.length; in acpi_ut_read_table()
234 table_header.signature, *table_length); in acpi_ut_read_table()