HomeSort by: relevance | last modified time | path
    Searched defs:Table (Results 1 - 25 of 54) sorted by relevancy

1 2 3

  /src/sys/external/bsd/acpica/dist/compiler/
dtcompilerparser.y 4 * Module Name: dtcompilerparser.y - Bison input file for table compiler parser
207 %type <f> Table
220 Table
dtcompilerparser.y 4 * Module Name: dtcompilerparser.y - Bison input file for table compiler parser
207 %type <f> Table
220 Table
dttable.c 241 ACPI_TABLE_FADT *Table;
248 /* Get the table revision and 32-bit DSDT Address definition */
261 Table = ACPI_CAST_PTR (ACPI_TABLE_FADT, ParentTable->Buffer);
262 Revision = Table->Header.Revision;
263 DsdtAddress = Table->Dsdt;
310 Table = ACPI_CAST_PTR (ACPI_TABLE_FADT, ParentTable->Buffer);
311 X_DsdtAddress = Table->XDsdt;
384 /* Large FACS reserved area at the end of the table */
dttable.c 241 ACPI_TABLE_FADT *Table;
248 /* Get the table revision and 32-bit DSDT Address definition */
261 Table = ACPI_CAST_PTR (ACPI_TABLE_FADT, ParentTable->Buffer);
262 Revision = Table->Header.Revision;
263 DsdtAddress = Table->Dsdt;
310 Table = ACPI_CAST_PTR (ACPI_TABLE_FADT, ParentTable->Buffer);
311 X_DsdtAddress = Table->XDsdt;
384 /* Large FACS reserved area at the end of the table */
  /src/sys/external/bsd/acpica/dist/debugger/
dbfileio.c 236 * DESCRIPTION: Load ACPI tables from a previously constructed table list.
246 ACPI_TABLE_HEADER *Table;
254 Table = TableListHead->Table;
256 Status = AcpiLoadTable (Table, NULL);
261 AcpiOsPrintf ("Table %4.4s is already installed\n",
262 Table->Signature);
266 AcpiOsPrintf ("Could not install table, %s\n",
273 AcpiOsPrintf ("Acpi table [%4.4s] successfully installed and loaded\n",
274 Table->Signature)
    [all...]
dbfileio.c 236 * DESCRIPTION: Load ACPI tables from a previously constructed table list.
246 ACPI_TABLE_HEADER *Table;
254 Table = TableListHead->Table;
256 Status = AcpiLoadTable (Table, NULL);
261 AcpiOsPrintf ("Table %4.4s is already installed\n",
262 Table->Signature);
266 AcpiOsPrintf ("Could not install table, %s\n",
273 AcpiOsPrintf ("Acpi table [%4.4s] successfully installed and loaded\n",
274 Table->Signature)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
boxdraw.c 129 UNICODE_TO_CHAR *Table;
140 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
141 if (Graphic == Table->Unicode) {
143 *PcAnsi = Table->PcAnsi;
146 *Ascii = Table->Ascii;
boxdraw.c 129 UNICODE_TO_CHAR *Table;
140 for (Table = UnicodeToPcAnsiOrAscii; Table->Unicode != 0x0000; Table++) {
141 if (Graphic == Table->Unicode) {
143 *PcAnsi = Table->PcAnsi;
146 *Ascii = Table->Ascii;
  /src/sys/external/bsd/acpica/dist/dispatcher/
dsinit.c 210 * We are only interested in NS nodes owned by the table that
301 * PARAMETERS: TableDesc - Descriptor for parent ACPI table
318 ACPI_TABLE_HEADER *Table;
354 Status = AcpiGetTableByIndex (TableIndex, &Table);
360 /* DSDT is always the first AML table */
362 if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT))
365 "\nACPI table initialization:\n"));
371 "Table [%4.4s: %-8.8s] (id %.2X) - %4u Objects with %3u Devices, "
373 Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount
    [all...]
dsinit.c 210 * We are only interested in NS nodes owned by the table that
301 * PARAMETERS: TableDesc - Descriptor for parent ACPI table
318 ACPI_TABLE_HEADER *Table;
354 Status = AcpiGetTableByIndex (TableIndex, &Table);
360 /* DSDT is always the first AML table */
362 if (ACPI_COMPARE_NAMESEG (Table->Signature, ACPI_SIG_DSDT))
365 "\nACPI table initialization:\n"));
371 "Table [%4.4s: %-8.8s] (id %.2X) - %4u Objects with %3u Devices, "
373 Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount
    [all...]
dsopcode.c 636 ACPI_TABLE_HEADER *Table;
645 * and OemTableId string of the Data Table Region declaration
676 /* Find the ACPI table */
687 "ACPI Table [%4.4s] OEM:(%s, %s) not found in RSDT/XSDT",
695 Status = AcpiGetTableByIndex (TableIndex, &Table);
708 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
709 ObjDesc->Region.Length = Table->Length;
710 ObjDesc->Region.Pointer = Table;
dsopcode.c 636 ACPI_TABLE_HEADER *Table;
645 * and OemTableId string of the Data Table Region declaration
676 /* Find the ACPI table */
687 "ACPI Table [%4.4s] OEM:(%s, %s) not found in RSDT/XSDT",
695 Status = AcpiGetTableByIndex (TableIndex, &Table);
708 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
709 ObjDesc->Region.Length = Table->Length;
710 ObjDesc->Region.Pointer = Table;
  /src/sys/external/bsd/acpica/dist/namespace/
nsparse.c 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 *
    [all...]
nsparse.c 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 *
    [all...]
  /src/sys/external/bsd/acpica/dist/tables/
tbinstal.c 3 * Module Name: tbinstal - ACPI table installation and removal
164 * PARAMETERS: NewTableDesc - New table descriptor to install
166 * TableIndex - Where the table index is returned
170 * DESCRIPTION: Install an ACPI table into the global data structure. The
171 * table override mechanism is called to allow the host
172 * OS to replace any table before it is installed in the root
173 * table array.
194 * ACPI Table Override:
196 * Before we install the table, let the host OS override it with a new
197 * one if desired. Any table within the RSDT/XSDT can be replaced
    [all...]
tbxfload.c 3 * Module Name: tbxfload - Table load/unload external interfaces
261 ACPI_TABLE_DESC *Table;
285 Table = &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex];
288 !ACPI_COMPARE_NAMESEG (Table->Signature.Ascii, ACPI_SIG_DSDT) ||
289 ACPI_FAILURE (AcpiTbValidateTable (Table)))
301 AcpiGbl_DSDT = Table->Pointer;
319 * Save the original DSDT header for detection of table corruption
332 ACPI_EXCEPTION ((AE_INFO, Status, "[DSDT] table load failed"));
344 Table = &AcpiGbl_RootTableList.Tables[i];
346 if (!Table->Address |
    [all...]
tbinstal.c 3 * Module Name: tbinstal - ACPI table installation and removal
164 * PARAMETERS: NewTableDesc - New table descriptor to install
166 * TableIndex - Where the table index is returned
170 * DESCRIPTION: Install an ACPI table into the global data structure. The
171 * table override mechanism is called to allow the host
172 * OS to replace any table before it is installed in the root
173 * table array.
194 * ACPI Table Override:
196 * Before we install the table, let the host OS override it with a new
197 * one if desired. Any table within the RSDT/XSDT can be replaced
    [all...]
tbxfload.c 3 * Module Name: tbxfload - Table load/unload external interfaces
261 ACPI_TABLE_DESC *Table;
285 Table = &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex];
288 !ACPI_COMPARE_NAMESEG (Table->Signature.Ascii, ACPI_SIG_DSDT) ||
289 ACPI_FAILURE (AcpiTbValidateTable (Table)))
301 AcpiGbl_DSDT = Table->Pointer;
319 * Save the original DSDT header for detection of table corruption
332 ACPI_EXCEPTION ((AE_INFO, Status, "[DSDT] table load failed"));
344 Table = &AcpiGbl_RootTableList.Tables[i];
346 if (!Table->Address |
    [all...]
tbutils.c 3 * Module Name: tbutils - ACPI Table utilities
260 * PARAMETERS: TableIndex - Index of installed table to copy
308 * PARAMETERS: TableEntry - Pointer to the RSDT/XSDT table entry
311 * RETURN: Physical address extracted from the root table
313 * DESCRIPTION: Get one root table entry. Handles 32-bit and 64-bit cases on
331 * Get the table physical address (32-bit for RSDT, 64-bit for XSDT):
337 * 32-bit platform, RSDT: Return 32-bit table entry
377 * Table (RSDT or XSDT)
393 ACPI_TABLE_HEADER *Table;
431 /* Root table is an RSDT (32-bit physical addresses) *
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpidump/
apdump.c 159 ACPI_TABLE_HEADER *Table,
168 * PARAMETERS: Table - Pointer to table to be validated
172 * DESCRIPTION: Check for a valid ACPI table header
178 ACPI_TABLE_HEADER *Table)
181 if (!ACPI_VALIDATE_RSDP_SIG (Table->Signature))
185 if (!AcpiUtValidNameseg (Table->Signature))
187 fprintf (stderr, "Table signature (0x%8.8X) is invalid\n",
188 *(UINT32 *) Table->Signature);
192 /* Check for minimum table length *
    [all...]
apdump.c 159 ACPI_TABLE_HEADER *Table,
168 * PARAMETERS: Table - Pointer to table to be validated
172 * DESCRIPTION: Check for a valid ACPI table header
178 ACPI_TABLE_HEADER *Table)
181 if (!ACPI_VALIDATE_RSDP_SIG (Table->Signature))
185 if (!AcpiUtValidNameseg (Table->Signature))
187 fprintf (stderr, "Table signature (0x%8.8X) is invalid\n",
188 *(UINT32 *) Table->Signature);
192 /* Check for minimum table length *
    [all...]
  /src/sys/external/bsd/acpica/dist/common/
adisasm.c 173 ACPI_TABLE_HEADER *Table,
180 ACPI_TABLE_HEADER *Table,
267 /* Setup the Table Manager (cheat - there is no RSDT) */
288 * DESCRIPTION: Disassembler entry point. Disassemble an entire ACPI table.
302 ACPI_TABLE_HEADER *Table = NULL;
348 Status = AcpiGetTable (ACPI_SIG_DSDT, 0, &Table);
357 Prefix = AdGenerateFilename ("dsdt", Table->OemTableId);
391 Status = AdDisassembleOneTable (ListHead->Table,
403 if (Table &&
405 !AcpiUtIsAmlTable (Table))
    [all...]
adisasm.c 173 ACPI_TABLE_HEADER *Table,
180 ACPI_TABLE_HEADER *Table,
267 /* Setup the Table Manager (cheat - there is no RSDT) */
288 * DESCRIPTION: Disassembler entry point. Disassemble an entire ACPI table.
302 ACPI_TABLE_HEADER *Table = NULL;
348 Status = AcpiGetTable (ACPI_SIG_DSDT, 0, &Table);
357 Prefix = AdGenerateFilename ("dsdt", Table->OemTableId);
391 Status = AdDisassembleOneTable (ListHead->Table,
403 if (Table &&
405 !AcpiUtIsAmlTable (Table))
    [all...]
  /src/sys/external/bsd/acpica/dist/executer/
exconfig.c 184 * PARAMETERS: Table - Pointer to raw table
185 * ParentNode - Where to load the table (scope)
186 * DdbHandle - Where to return the table handle.
190 * DESCRIPTION: Common function to Install and Load an ACPI table with a
191 * returned table handle.
206 /* Create an object to be the table handle */
214 /* Init the table handle */
233 * DESCRIPTION: Load an ACPI table from the RSDT/XSDT
265 /* Find the ACPI table in the RSDT/XSDT *
    [all...]
  /src/sys/external/bsd/acpica/dist/tools/acpiexec/
aetables.c 3 * Module Name: aetables - ACPI table setup/install for acpiexec utility
171 /* User table (DSDT) */
221 /* This code exercises the table override mechanism in the core */
241 * PARAMETERS: Header - A valid standard ACPI table header
243 * Length - Length of the table
247 * DESCRIPTION: Initialize the table header for a local ACPI table.
284 * DESCRIPTION: Build a complete ACPI table chain, with a local RSDP, XSDT,
302 * Update the table count. For the DSDT, it is not put into the XSDT.
303 * For the FADT, this table is already accounted for since we usuall
    [all...]

Completed in 73 milliseconds

1 2 3