Lines Matching refs:local_table
160 struct acpi_table_header *local_table = NULL; in acpi_os_get_table_by_address() local
185 local_table = calloc(1, table_length); in acpi_os_get_table_by_address()
186 if (!local_table) { in acpi_os_get_table_by_address()
191 memcpy(local_table, mapped_table, table_length); in acpi_os_get_table_by_address()
195 *table = local_table; in acpi_os_get_table_by_address()
771 struct acpi_table_header *local_table = NULL; in osl_get_bios_table() local
967 local_table = calloc(1, table_length); in osl_get_bios_table()
968 if (!local_table) { in osl_get_bios_table()
973 memcpy(local_table, mapped_table, table_length); in osl_get_bios_table()
975 *table = local_table; in osl_get_bios_table()
1202 struct acpi_table_header *local_table = NULL; in osl_read_table_from_file() local
1257 local_table = calloc(1, table_length); in osl_read_table_from_file()
1258 if (!local_table) { in osl_read_table_from_file()
1268 count = fread(local_table, 1, table_length, table_file); in osl_read_table_from_file()
1278 (void)ap_is_valid_checksum(local_table); in osl_read_table_from_file()
1282 *table = local_table; in osl_read_table_from_file()