Lines Matching refs:table
60 acpi_ut_check_text_mode_corruption(u8 *table,
65 struct acpi_table_header **table, u32 *table_length);
84 acpi_ut_check_text_mode_corruption(u8 *table, u32 table_length, u32 file_length) in acpi_ut_check_text_mode_corruption() argument
98 if (table[i] == 0x0A) { in acpi_ut_check_text_mode_corruption()
99 if (table[i - 1] != 0x0D) { in acpi_ut_check_text_mode_corruption()
147 struct acpi_table_header **table, u32 *table_length) in acpi_ut_read_table() argument
230 *table = acpi_os_allocate((size_t) file_size); in acpi_ut_read_table()
231 if (!*table) { in acpi_ut_read_table()
241 actual = fread(*table, 1, (size_t) file_size, fp); in acpi_ut_read_table()
247 status = acpi_tb_verify_checksum((void *)*table, in acpi_ut_read_table()
250 *table)-> in acpi_ut_read_table()
256 *table, in acpi_ut_read_table()
258 (*table)-> in acpi_ut_read_table()
273 acpi_os_free(*table); in acpi_ut_read_table()
274 *table = NULL; in acpi_ut_read_table()
293 acpi_ut_read_table_from_file(char *filename, struct acpi_table_header ** table) in acpi_ut_read_table_from_file() argument
324 status = acpi_ut_read_table(file, table, &table_length); in acpi_ut_read_table_from_file()