| /src/sys/dev/acpi/ |
| apei_einj.c | 30 * APEI EINJ -- Error Injection Table 37 * platform's EINJ operational context. However, this also requires 79 * Symbolic names of the APEI EINJ (Error Injection) logical actions 100 * Symbolic names of the APEI EINJ (Error Injection) instructions to 139 ACPI_TABLE_EINJ *einj = sc->sc_tab.einj; local in function:apei_einj_attach 154 if (einj->Header.Length < sizeof(*einj)) { 155 aprint_error_dev(sc->sc_dev, "EINJ: truncated table:" 157 einj->Header.Length, sizeof(*einj)) [all...] |
| apeivar.h | 54 ACPI_TABLE_EINJ *einj; /* Error Injection Table */ member in struct:apei_tab
|
| apei.c | 90 if (tab.bert || tab.einj || tab.erst || tab.hest) 143 * Set up BERT, EINJ, ERST, and HEST. 149 if (sc->sc_tab.einj) { 150 apei_identify(sc, "EINJ", &sc->sc_tab.einj->Header); 195 if (sc->sc_tab.einj) 211 * Get references to whichever APEI-related tables -- BERT, EINJ, 227 * Probe the EINJ -- Error Injection Table. 229 rv = AcpiGetTable(ACPI_SIG_EINJ, 0, (ACPI_TABLE_HEADER **)&tab->einj); 231 tab->einj = NULL [all...] |
| /src/usr.sbin/acpitools/acpidump/ |
| acpi.c | 1657 ACPI_TABLE_EINJ *einj; local in function:acpi_handle_einj 1664 einj = (ACPI_TABLE_EINJ *)sdp; 1666 printf("\tHeader Length=%d\n", einj->HeaderLength); 1667 printf("\tFlags=0x%x\n", einj->Flags); 1668 printf("\tEntries=%d\n", einj->Entries); 1671 for (i = 0; i < einj->Entries; i++) { 1672 einj_entry = (ACPI_EINJ_ENTRY *)((char *)einj + einj_pos);
|