Lines Matching refs:table_header
148 struct acpi_table_header table_header; in acpi_ut_read_table() local
170 count = fread(&table_header, 1, sizeof(struct acpi_table_header), fp); in acpi_ut_read_table()
178 if (ACPI_VALIDATE_RSDP_SIG(table_header.signature)) { in acpi_ut_read_table()
186 status = acpi_tb_validate_table_header(&table_header); in acpi_ut_read_table()
195 if (table_header.length > file_size) { in acpi_ut_read_table()
198 table_header.length, file_size); in acpi_ut_read_table()
213 ((char *)table_header.signature, ACPI_SIG_DSDT) in acpi_ut_read_table()
214 && !ACPI_COMPARE_NAME((char *)table_header.signature, in acpi_ut_read_table()
216 && !ACPI_COMPARE_NAME((char *)table_header.signature, in acpi_ut_read_table()
220 (char *)table_header.signature); in acpi_ut_read_table()
221 ACPI_DUMP_BUFFER(&table_header, in acpi_ut_read_table()
227 *table_length = table_header.length; in acpi_ut_read_table()
236 table_header.signature, *table_length); in acpi_ut_read_table()