Lines Matching defs:header
22 struct acpi_table_header *header);
55 * PARAMETERS: out_header - Where the cleaned header is returned
56 * header - Input ACPI table header
58 * RETURN: Returns the cleaned header in out_header
60 * DESCRIPTION: Copy the table header and ensure that all "string" fields in
61 * the header consist of printable characters.
67 struct acpi_table_header *header)
70 memcpy(out_header, header, sizeof(struct acpi_table_header));
83 * header - Table header
87 * DESCRIPTION: Print an ACPI table header. Special cases for FACS and RSDP.
93 struct acpi_table_header *header)
97 if (ACPI_COMPARE_NAMESEG(header->signature, ACPI_SIG_FACS)) {
102 header->signature, ACPI_FORMAT_UINT64(address),
103 header->length));
104 } else if (ACPI_VALIDATE_RSDP_SIG(header->signature)) {
109 ACPI_CAST_PTR(struct acpi_table_rsdp, header)->oem_id,
115 (ACPI_CAST_PTR(struct acpi_table_rsdp, header)->
118 header)->length : 20,
120 header)->revision,
123 /* Standard ACPI table with full common header */
125 acpi_tb_cleanup_table_header(&local_header, header);
158 * They are the odd tables, have no standard ACPI header and no checksum