Home | History | Annotate | Download | only in acpidump

Lines Matching refs:Table

252  * PARAMETERS:  Table               - ACPI table to be written
253 * Instance - ACPI table instance no. to be written
257 * DESCRIPTION: Write an ACPI table to a binary file. Builds the output
258 * filename from the table signature.
264 ACPI_TABLE_HEADER *Table,
274 /* Obtain table length */
276 TableLength = ApGetTableLength (Table);
278 /* Construct lower-case filename from the table local signature */
280 if (ACPI_VALIDATE_RSDP_SIG (Table->Signature))
286 ACPI_COPY_NAMESEG (Filename, Table->Signature);
309 Table->Signature, Filename, Table->Length, Table->Length);
312 /* Open the file and dump the entire table in binary mode */
321 Actual = fwrite (Table, 1, TableLength, File);
338 * PARAMETERS: Pathname - File containing the binary ACPI table
341 * RETURN: Buffer containing the ACPI table. NULL on error.