Searched refs:table_header (Results 1 – 6 of 6) sorted by relevance
/drivers/acpi/acpica/ |
D | utfileio.c | 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() [all …]
|
D | exconfig.c | 338 struct acpi_table_header *table_header; in acpi_ex_load_op() local 373 table_header = ACPI_ALLOCATE(sizeof(struct acpi_table_header)); in acpi_ex_load_op() 374 if (!table_header) { in acpi_ex_load_op() 381 ACPI_CAST_PTR(u8, table_header)); in acpi_ex_load_op() 382 length = table_header->length; in acpi_ex_load_op() 383 ACPI_FREE(table_header); in acpi_ex_load_op() 442 table_header = in acpi_ex_load_op() 445 length = table_header->length; in acpi_ex_load_op() 465 memcpy(table, table_header, length); in acpi_ex_load_op()
|
D | tbdata.c | 194 struct acpi_table_header *table_header; in acpi_tb_acquire_temp_table() local 201 table_header = in acpi_tb_acquire_temp_table() 204 if (!table_header) { in acpi_tb_acquire_temp_table() 209 table_header); in acpi_tb_acquire_temp_table() 210 acpi_os_unmap_memory(table_header, in acpi_tb_acquire_temp_table() 217 table_header = ACPI_CAST_PTR(struct acpi_table_header, in acpi_tb_acquire_temp_table() 219 if (!table_header) { in acpi_tb_acquire_temp_table() 224 table_header); in acpi_tb_acquire_temp_table()
|
/drivers/acpi/ |
D | tables.c | 233 struct acpi_table_header *table_header, in acpi_parse_entries_array() argument 251 if (!table_header) { in acpi_parse_entries_array() 256 table_end = (unsigned long)table_header + table_header->length; in acpi_parse_entries_array() 261 ((unsigned long)table_header + table_size); in acpi_parse_entries_array() 306 struct acpi_table_header *table_header, in acpi_parse_entries() argument 314 return acpi_parse_entries_array(id, table_size, table_header, in acpi_parse_entries() 324 struct acpi_table_header *table_header = NULL; in acpi_table_parse_entries_array() local 338 acpi_get_table_with_size(id, instance, &table_header, &tbl_size); in acpi_table_parse_entries_array() 339 if (!table_header) { in acpi_table_parse_entries_array() 344 count = acpi_parse_entries_array(id, table_size, table_header, in acpi_table_parse_entries_array() [all …]
|
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 | sysfs.c | 330 struct acpi_table_header *table_header = NULL; in acpi_table_show() local 339 status = acpi_get_table(name, table_attr->instance, &table_header); in acpi_table_show() 344 table_header, table_header->length); in acpi_table_show() 348 struct acpi_table_header *table_header) in acpi_table_attr_init() argument 354 if (table_header->signature[0] != '\0') in acpi_table_attr_init() 355 memcpy(table_attr->name, table_header->signature, in acpi_table_attr_init() 369 (table_header->signature, 2, &header))) in acpi_table_attr_init() 373 table_attr->attr.size = table_header->length; in acpi_table_attr_init() 417 struct acpi_table_header *table_header = NULL; in acpi_tables_sysfs_init() local 431 status = acpi_get_table_by_index(table_index, &table_header); in acpi_tables_sysfs_init() [all …]
|