Home | History | Annotate | Download | only in namespace

Lines Matching defs:Table

169  * PARAMETERS:  TableDesc       - An ACPI table descriptor for table to parse
170 * StartNode - Where to enter the table into the namespace
174 * DESCRIPTION: Load ACPI/AML table by executing the entire table as a single
178 * as the table is parsed. Some AML code depends on this behavior.
183 * Note: This causes the table to only have a single-pass parse.
194 ACPI_TABLE_HEADER *Table;
205 Status = AcpiGetTableByIndex (TableIndex, &Table);
211 /* Table must consist of at least a complete header */
213 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
218 AmlStart = (UINT8 *) Table + sizeof (ACPI_TABLE_HEADER);
219 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
245 "%s: Create table pseudo-method for [%4.4s] @%p, method %p\n",
246 ACPI_GET_FUNCTION_NAME, Table->Signature, Table, MethodObj));
293 * TableDesc - The table to be parsed.
297 * DESCRIPTION: Perform one complete parse of an ACPI/AML table.
312 ACPI_TABLE_HEADER *Table;
319 Status = AcpiGetTableByIndex (TableIndex, &Table);
325 /* Table must consist of at least a complete header */
327 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
332 AmlStart = (UINT8 *) Table + sizeof (ACPI_TABLE_HEADER);
333 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
366 /* Found OSDT table, enable the namespace override feature */
368 if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_OSDT) &&
374 /* StartNode is the default location to load the table */
405 * PARAMETERS: TableDesc - An ACPI table descriptor for table to parse
406 * StartNode - Where to enter the table into the namespace
410 * DESCRIPTION: Parse AML within an ACPI table and return a tree of ops
426 * Executes the AML table as one large control method.
428 * as the table is parsed. Some AML code depends on this behavior.
430 * Note: This causes the table to only have a single-pass parse.
434 "%s: **** Start table execution pass\n", ACPI_GET_FUNCTION_NAME));