Searched defs:Table (Results 1 - 21 of 21) sorted by relevance

/illumos-gate/usr/src/lib/pyzfs/common/
H A Dtable.py27 class Table: class in inherits:
/illumos-gate/usr/src/cmd/acpi/acpidump/
H A Dapfiles.c138 * PARAMETERS: Table - ACPI table to be written
150 ACPI_TABLE_HEADER *Table,
162 TableLength = ApGetTableLength (Table);
166 if (ACPI_VALIDATE_RSDP_SIG (Table->Signature))
172 ACPI_MOVE_NAME (Filename, Table->Signature);
195 Table->Signature, Filename, Table->Length, Table->Length);
208 Actual = AcpiOsWriteFile (File, Table, 1, TableLength);
149 ApWriteToBinaryFile( ACPI_TABLE_HEADER *Table, UINT32 Instance) argument
H A Dtbprint.c3 * Module Name: tbprint - Table output utilities
131 * PARAMETERS: Address - Table physical address
132 * Header - Table header
192 * PARAMETERS: Table - ACPI table to verify
204 ACPI_TABLE_HEADER *Table,
215 if (ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_S3PT) ||
216 ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_FACS))
223 Checksum = AcpiTbChecksum (ACPI_CAST_PTR (UINT8, Table), Length);
232 Table->Signature, Table
203 AcpiTbVerifyChecksum( ACPI_TABLE_HEADER *Table, UINT32 Length) argument
[all...]
H A Dapdump.c51 ACPI_TABLE_HEADER *Table,
60 * PARAMETERS: Table - Pointer to table to be validated
70 ACPI_TABLE_HEADER *Table)
73 if (!ACPI_VALIDATE_RSDP_SIG (Table->Signature))
77 if (!AcpiUtValidNameseg (Table->Signature))
79 AcpiLogError ("Table signature (0x%8.8X) is invalid\n",
80 *(UINT32 *) Table->Signature);
86 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
88 AcpiLogError ("Table length (0x%8.8X) is invalid\n",
89 Table
69 ApIsValidHeader( ACPI_TABLE_HEADER *Table) argument
111 ApIsValidChecksum( ACPI_TABLE_HEADER *Table) argument
155 ApGetTableLength( ACPI_TABLE_HEADER *Table) argument
196 ApDumpTableBuffer( ACPI_TABLE_HEADER *Table, UINT32 Instance, ACPI_PHYSICAL_ADDRESS Address) argument
254 ACPI_TABLE_HEADER *Table; local
321 ACPI_TABLE_HEADER *Table; local
373 ACPI_TABLE_HEADER *Table; local
455 ACPI_TABLE_HEADER *Table; local
[all...]
H A Dosillumostbl.c91 /* Table addresses */
136 * Table - Where a pointer to the table is returned
138 * RETURN: Status; Table buffer is returned if AE_OK.
146 ACPI_TABLE_HEADER **Table)
187 *Table = LocalTable;
199 * Table - Where a pointer to the table is returned
202 * RETURN: Status; Table buffer and physical address returned if AE_OK.
211 ACPI_TABLE_HEADER **Table, ACPI_PHYSICAL_ADDRESS *Address)
225 Status = OslGetBiosTable(Signature, Instance, Table, Address);
234 * PARAMETERS: Signature - Table signatur
145 AcpiOsGetTableByAddress(ACPI_PHYSICAL_ADDRESS Address, ACPI_TABLE_HEADER **Table) argument
210 AcpiOsGetTableByName(char *Signature, UINT32 Instance, ACPI_TABLE_HEADER **Table, ACPI_PHYSICAL_ADDRESS *Address) argument
310 AcpiOsGetTableByIndex(UINT32 Index, ACPI_TABLE_HEADER **Table, UINT32 *Instance, ACPI_PHYSICAL_ADDRESS *Address) argument
665 OslGetBiosTable(char *Signature, UINT32 Instance, ACPI_TABLE_HEADER **Table, ACPI_PHYSICAL_ADDRESS *Address) argument
852 OslMapTable(ACPI_SIZE Address, char *Signature, ACPI_TABLE_HEADER **Table) argument
925 OslUnmapTable(ACPI_TABLE_HEADER *Table) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/dispatcher/
H A Ddsinit.c209 ACPI_TABLE_HEADER *Table; local
252 Status = AcpiGetTableByIndex (TableIndex, &Table);
260 if (ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_DSDT))
269 "Table [%4.4s: %-8.8s] (id %.2X) - %4u Objects with %3u Devices, "
271 Table->Signature, Table->OemTableId, OwnerId, Info.ObjectCount,
H A Ddsopcode.c514 ACPI_TABLE_HEADER *Table; local
523 * and OemTableId string of the Data Table Region declaration
565 "ACPI Table [%4.4s] OEM:(%s, %s) not found in RSDT/XSDT",
573 Status = AcpiGetTableByIndex (TableIndex, &Table);
586 ObjDesc->Region.Address = ACPI_PTR_TO_PHYSADDR (Table);
587 ObjDesc->Region.Length = Table->Length;
/illumos-gate/usr/src/uts/intel/io/acpica/namespace/
H A Dnsparse.c80 ACPI_TABLE_HEADER *Table; local
87 Status = AcpiGetTableByIndex (TableIndex, &Table);
93 /* Table must consist of at least a complete header */
95 if (Table->Length < sizeof (ACPI_TABLE_HEADER))
100 AmlStart = (UINT8 *) Table + sizeof (ACPI_TABLE_HEADER);
101 AmlLength = Table->Length - sizeof (ACPI_TABLE_HEADER);
136 if (ACPI_COMPARE_NAME(Table->Signature, ACPI_SIG_OSDT) &&
H A Dnsxfname.c598 ACPI_TABLE_HEADER *Table = ACPI_CAST_PTR (ACPI_TABLE_HEADER, Buffer); local
618 /* Table must be a DSDT or SSDT */
620 if (!ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_DSDT) &&
621 !ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_SSDT))
/illumos-gate/usr/src/uts/intel/io/acpica/tables/
H A Dtbprint.c3 * Module Name: tbprint - Table output utilities
131 * PARAMETERS: Address - Table physical address
132 * Header - Table header
192 * PARAMETERS: Table - ACPI table to verify
204 ACPI_TABLE_HEADER *Table,
215 if (ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_S3PT) ||
216 ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_FACS))
223 Checksum = AcpiTbChecksum (ACPI_CAST_PTR (UINT8, Table), Length);
232 Table->Signature, Table
203 AcpiTbVerifyChecksum( ACPI_TABLE_HEADER *Table, UINT32 Length) argument
[all...]
H A Dtbxfload.c3 * Module Name: tbxfload - Table load/unload external interfaces
156 ACPI_TABLE_DESC *Table; local
170 Table = &AcpiGbl_RootTableList.Tables[AcpiGbl_DsdtIndex];
173 !ACPI_COMPARE_NAME (Table->Signature.Ascii, ACPI_SIG_DSDT) ||
174 ACPI_FAILURE (AcpiTbValidateTable (Table)))
186 AcpiGbl_DSDT = Table->Pointer;
230 Table = &AcpiGbl_RootTableList.Tables[i];
233 (!ACPI_COMPARE_NAME (Table->Signature.Ascii, ACPI_SIG_SSDT) &&
234 !ACPI_COMPARE_NAME (Table->Signature.Ascii, ACPI_SIG_PSDT) &&
235 !ACPI_COMPARE_NAME (Table
[all...]
H A Dtbinstal.c63 * PARAMETERS: TableDesc - Table 1 descriptor to be compared
80 ACPI_TABLE_HEADER *Table; local
86 &Table, &TableLength, &TableFlags);
97 memcmp (TableDesc->Pointer, Table, TableLength)) ?
102 AcpiTbReleaseTable (Table, TableLength, TableFlags);
141 * ACPI Table Override:
175 * Signature - Table signature, NULL if no need to
327 "Table has invalid signature [%4.4s] (0x%8.8X), "
367 /* Table is still loaded, this is an error */
375 * Table wa
426 ACPI_TABLE_HEADER *Table; local
[all...]
H A Dtbutils.c3 * Module Name: tbutils - ACPI Table utilities
268 * Table (RSDT or XSDT)
284 ACPI_TABLE_HEADER *Table; local
336 Table = AcpiOsMapMemory (Address, sizeof (ACPI_TABLE_HEADER));
337 if (!Table)
342 AcpiTbPrintTableHeader (Address, Table);
348 Length = Table->Length;
349 AcpiOsUnmapMemory (Table, sizeof (ACPI_TABLE_HEADER));
358 Table = AcpiOsMapMemory (Address, Length);
359 if (!Table)
[all...]
H A Dtbdata.c3 * Module Name: tbdata - Table manager data structure functions
57 * PARAMETERS: TableDesc - Table descriptor
60 * Table - Pointer to the table
73 ACPI_TABLE_HEADER *Table)
82 TableDesc->Length = Table->Length;
84 ACPI_MOVE_32_TO_32 (TableDesc->Signature.Ascii, Table->Signature);
92 * PARAMETERS: TableDesc - Table descriptor
111 ACPI_TABLE_HEADER *Table = NULL; local
118 Table = AcpiOsMapMemory (TableDesc->Address, TableDesc->Length);
124 Table
69 AcpiTbInitTableDescriptor( ACPI_TABLE_DESC *TableDesc, ACPI_PHYSICAL_ADDRESS Address, UINT8 Flags, ACPI_TABLE_HEADER *Table) argument
164 AcpiTbReleaseTable( ACPI_TABLE_HEADER *Table, UINT32 TableLength, UINT8 TableFlags) argument
[all...]
H A Dtbfadt.c77 /* Table for conversion of FADT to common internal format and FADT validation */
158 /* Table used to split Event Blocks into separate status/enable registers */
343 ACPI_TABLE_HEADER *Table; local
355 Table = AcpiOsMapMemory (
357 if (!Table)
366 (void) AcpiTbVerifyChecksum (Table, Length);
370 AcpiTbCreateLocalFadt (Table, Length);
374 AcpiOsUnmapMemory (Table, Length);
403 * PARAMETERS: Table - Pointer to BIOS FADT
417 ACPI_TABLE_HEADER *Table,
416 AcpiTbCreateLocalFadt( ACPI_TABLE_HEADER *Table, UINT32 Length) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/executer/
H A Dexconfig.c76 * PARAMETERS: Table - Pointer to raw table
177 ACPI_TABLE_HEADER *Table; local
197 /* Table not found, return an Integer=0 and AE_OK */
279 Status = AcpiGetTableByIndex (TableIndex, &Table);
282 ACPI_INFO (("Dynamic OEM Table Load:"));
283 AcpiTbPrintTableHeader (0, Table);
290 (void) AcpiGbl_TableHandler (ACPI_TABLE_EVENT_LOAD, Table,
375 ACPI_TABLE_HEADER *Table; local
456 Table = ACPI_ALLOCATE (Length);
457 if (!Table)
612 ACPI_TABLE_HEADER *Table; local
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/resources/
H A Drsdump.c117 ACPI_RSDUMP_INFO *Table);
237 AcpiOsPrintf ("\n[%02X] PCI IRQ Routing Table Package\n", Count);
251 * Table - Table entry to decode the resource
262 ACPI_RSDUMP_INFO *Table)
272 Count = Table->Offset;
277 Target = ACPI_ADD_PTR (UINT8, Resource, Table->Offset);
278 Name = Table->Name;
280 switch (Table->Opcode)
286 if (Table
260 AcpiRsDumpDescriptor( void *Resource, ACPI_RSDUMP_INFO *Table) argument
[all...]
/illumos-gate/usr/src/uts/intel/io/acpica/utilities/
H A Dutmisc.c92 * PARAMETERS: Table - An ACPI table
104 ACPI_TABLE_HEADER *Table)
109 if (ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_DSDT) ||
110 ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_PSDT) ||
111 ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_SSDT) ||
112 ACPI_COMPARE_NAME (Table->Signature, ACPI_SIG_OSDT))
103 AcpiUtIsAmlTable( ACPI_TABLE_HEADER *Table) argument
/illumos-gate/usr/src/lib/libsqlite/src/
H A DsqliteInt.h235 typedef struct Table Table; typedef in typeref:struct:Table
473 ** Table.zName is the name of the table. The case of the original
477 ** Table.nCol is the number of columns in this table. Table.aCol is a
480 ** If the table has an INTEGER PRIMARY KEY, then Table.iPKey is the index of
481 ** the column that is that key. Otherwise Table.iPKey is negative. Note
485 ** is generated for each row of the table. Table.hasPrimKey is true if
488 ** Table.tnum is the page number for the root BTree page of the table in the
489 ** database file. If Table
499 struct Table { struct
[all...]
/illumos-gate/usr/src/cmd/fdisk/
H A Dfdisk.c317 static struct ipart Table[FD_NUMPART]; variable in typeref:struct:ipart
510 "Amoeba Bad Block Table", /* 148 */
617 "Xenix Bad Block Table" /* 255 */
1171 /* save away a copy of Table in Old_Table for sensing changes */
1182 if ((rval = libfdisk_init(&epp, Dfltdev, &Table[0], lf_op_flag))
1258 Table[0].bootid = ACTIVE;
1259 Table[0].relsect = LE_32(heads * sectors);
1261 Table[0].numsect =
1265 Table[0].systid = SUNIXOS2; /* Solaris */
1288 (void) fprintf(stderr, "Partition Table Entr
[all...]
/illumos-gate/usr/src/uts/intel/sys/acpi/
H A Daclocal.h129 /* Table for the global mutexes */
233 ACPI_TABLE_DESC *Tables; /* Table descriptor array */
251 ACPI_TABLE_HEADER *Table; member in struct:acpi_new_table_desc

Completed in 687 milliseconds