Lines Matching refs:Table

3  * Module Name: tbdata - Table manager data structure functions
178 * PARAMETERS: TableDesc - Table 1 descriptor to be compared
195 ACPI_TABLE_HEADER *Table;
201 &Table, &TableLength, &TableFlags);
212 memcmp (TableDesc->Pointer, Table, TableLength)) ?
217 AcpiTbReleaseTable (Table, TableLength, TableFlags);
226 * PARAMETERS: TableDesc - Table descriptor
229 * Table - Pointer to the table
242 ACPI_TABLE_HEADER *Table)
251 TableDesc->Length = Table->Length;
253 ACPI_MOVE_32_TO_32 (TableDesc->Signature.Ascii, Table->Signature);
260 TableDesc->Pointer = Table;
275 * PARAMETERS: TableDesc - Table descriptor
294 ACPI_TABLE_HEADER *Table = NULL;
301 Table = AcpiOsMapMemory (TableDesc->Address, TableDesc->Length);
307 Table = TableDesc->Pointer;
315 /* Table is not valid yet */
317 if (!Table)
324 *TablePtr = Table;
335 * PARAMETERS: Table - Pointer for the table
347 ACPI_TABLE_HEADER *Table,
356 AcpiOsUnmapMemory (Table, TableLength);
372 * PARAMETERS: TableDesc - Table descriptor to be acquired
375 * Table - Pointer to the table (required for virtual
392 ACPI_TABLE_HEADER *Table)
403 if (!Table)
405 Table = AcpiOsMapMemory (Address, sizeof (ACPI_TABLE_HEADER));
406 if (!Table)
419 if (!Table)
428 /* Table is not valid yet */
433 AcpiTbInitTableDescriptor (TableDesc, Address, Flags, Table);
436 AcpiOsUnmapMemory (Table, sizeof (ACPI_TABLE_HEADER));
447 * PARAMETERS: TableDesc - Table descriptor to be released
473 * PARAMETERS: TableDesc - Table descriptor
512 * PARAMETERS: TableDesc - Table descriptor
529 /* Table must be validated */
561 * PARAMETERS: TableDesc - Table descriptor
597 * PARAMETERS: TableDesc - Table descriptor
657 /* Table is still loaded, this is an error */
678 * PARAMETERS: TableDesc - Table descriptor
679 * Signature - Table signature to verify
751 " Table is already loaded",
801 ACPI_ERROR ((AE_INFO, "Resize of Root Table Array is not allowed"));
805 /* Increase the Table Array size */
878 /* Ensure that there is room for the table in the Root Table List */
961 * PARAMETERS: TableIndex - Table index
1022 * PARAMETERS: TableIndex - Table index
1056 * PARAMETERS: TableIndex - Table index
1091 * PARAMETERS: TableIndex - Table index
1129 * RETURN: Table Loaded Flag
1157 * PARAMETERS: TableIndex - Table index
1195 * PARAMETERS: TableIndex - Table index
1209 ACPI_TABLE_HEADER *Table;
1221 Status = AcpiGetTableByIndex (TableIndex, &Table);
1246 AcpiTbNotifyTable (ACPI_TABLE_EVENT_LOAD, Table);
1257 * Table - Pointer to the table (required for
1273 ACPI_TABLE_HEADER *Table,
1286 Status = AcpiTbInstallStandardTable (Address, Flags, Table, TRUE,
1305 * PARAMETERS: TableIndex - Table index
1318 ACPI_TABLE_HEADER *Table;
1333 Status = AcpiGetTableByIndex (TableIndex, &Table);
1336 AcpiTbNotifyTable (ACPI_TABLE_EVENT_UNLOAD, Table);
1357 * PARAMETERS: Event - Table event
1358 * Table - Validated table pointer
1369 void *Table)
1375 (void) AcpiGbl_TableHandler (Event, Table,