Searched refs:table_header (Results 1 – 5 of 5) sorted by relevance
/drivers/acpi/ |
D | blacklist.c | 77 struct acpi_table_header table_header; in acpi_blacklisted() local 80 if (acpi_get_table_header(acpi_blacklist[i].table, 0, &table_header)) { in acpi_blacklisted() 85 if (strncmp(acpi_blacklist[i].oem_id, table_header.oem_id, 6)) { in acpi_blacklisted() 91 (acpi_blacklist[i].oem_table_id, table_header.oem_table_id, in acpi_blacklisted() 100 && table_header.oem_revision <= in acpi_blacklisted() 104 && table_header.oem_revision >= in acpi_blacklisted() 107 && table_header.oem_revision == in acpi_blacklisted()
|
D | tables.c | 241 struct acpi_table_header *table_header, in acpi_parse_entries_array() argument 260 if (!table_header) { in acpi_parse_entries_array() 265 table_end = (unsigned long)table_header + table_header->length; in acpi_parse_entries_array() 270 ((unsigned long)table_header + table_size); in acpi_parse_entries_array() 317 struct acpi_table_header *table_header, in acpi_parse_entries() argument 325 return acpi_parse_entries_array(id, table_size, table_header, in acpi_parse_entries() 335 struct acpi_table_header *table_header = NULL; in acpi_table_parse_entries_array() local 349 acpi_get_table_with_size(id, instance, &table_header, &tbl_size); in acpi_table_parse_entries_array() 350 if (!table_header) { in acpi_table_parse_entries_array() 355 count = acpi_parse_entries_array(id, table_size, table_header, in acpi_table_parse_entries_array() [all …]
|
D | sysfs.c | 336 struct acpi_table_header *table_header = NULL; in acpi_table_show() local 340 &table_header); in acpi_table_show() 345 table_header, table_header->length); in acpi_table_show() 350 struct acpi_table_header *table_header) in acpi_table_attr_init() argument 357 ACPI_MOVE_NAME(table_attr->name, table_header->signature); in acpi_table_attr_init() 371 ACPI_MOVE_NAME(table_attr->filename, table_header->signature); in acpi_table_attr_init() 375 (table_header->signature, 2, &header))) { in acpi_table_attr_init() 381 table_attr->attr.size = table_header->length; in acpi_table_attr_init() 425 struct acpi_table_header *table_header = NULL; in acpi_tables_sysfs_init() local 439 status = acpi_get_table_by_index(table_index, &table_header); in acpi_tables_sysfs_init() [all …]
|
/drivers/acpi/acpica/ |
D | exconfig.c | 301 struct acpi_table_header *table_header; in acpi_ex_load_op() local 336 table_header = ACPI_ALLOCATE(sizeof(struct acpi_table_header)); in acpi_ex_load_op() 337 if (!table_header) { in acpi_ex_load_op() 344 ACPI_CAST_PTR(u8, table_header)); in acpi_ex_load_op() 345 length = table_header->length; in acpi_ex_load_op() 346 ACPI_FREE(table_header); in acpi_ex_load_op() 405 table_header = in acpi_ex_load_op() 408 length = table_header->length; in acpi_ex_load_op() 428 memcpy(table, table_header, length); in acpi_ex_load_op()
|
D | tbdata.c | 195 struct acpi_table_header *table_header; in acpi_tb_acquire_temp_table() local 202 table_header = in acpi_tb_acquire_temp_table() 205 if (!table_header) { in acpi_tb_acquire_temp_table() 210 table_header); in acpi_tb_acquire_temp_table() 211 acpi_os_unmap_memory(table_header, in acpi_tb_acquire_temp_table() 218 table_header = ACPI_CAST_PTR(struct acpi_table_header, in acpi_tb_acquire_temp_table() 220 if (!table_header) { in acpi_tb_acquire_temp_table() 225 table_header); in acpi_tb_acquire_temp_table()
|