HomeSort by relevance Sort by last modified time
    Searched refs:ssdt (Results 1 - 5 of 5) sorted by null

  /external/syslinux/com32/gplinclude/acpi/
acpi.h 30 #include <acpi/ssdt.h>
80 s_ssdt *ssdt[MAX_SSDT]; member in struct:__anon31807
  /external/syslinux/com32/hdt/
hdt-cli-acpi.c 96 /* SSDT includes many optional tables, let's display them */
98 if ((hardware->acpi.ssdt[i] != NULL) && (hardware->acpi.ssdt[i]->valid))
99 show_header(hardware->acpi.ssdt[i]->address,
100 &hardware->acpi.ssdt[i]->header);
hdt-menu-acpi.c 76 /* SSDT includes many optional tables, let's display them */
78 if ((hardware->acpi.ssdt[i] != NULL) && (hardware->acpi.ssdt[i]->valid))
79 compute_table(menu,hardware->acpi.ssdt[i]->address,
80 &hardware->acpi.ssdt[i]->header);
hdt-dump-acpi.c 324 void dump_ssdt(s_ssdt *ssdt, ZZJSON_CONFIG * config, ZZJSON ** item)
328 if (ssdt->valid) {
332 add_as("acpi.item","ssdt")
333 add_as("acpi.ssdt.is_valid",valid)
336 if (ssdt->valid==false) {
341 show_header("ssdt",ssdt->address, &ssdt->header, config, item);
593 if ((hardware->acpi.ssdt[i] != NULL) && (hardware->acpi.ssdt[i]->valid)
    [all...]
  /external/syslinux/com32/gpllib/acpi/
acpi.c 175 /* PSDT have to be considered as SSDT. Intel ACPI Spec @ 5.2.11.3 */
176 } else if ((memcmp(adh.signature, SSDT, sizeof(SSDT) - 1) == 0)
179 DEBUG_PRINT(("SSDT table found with %s \n",adh.signature));
184 /* We can have many SSDT, so let's allocate a new one */
185 if ((acpi->ssdt[acpi->ssdt_count] =
188 s_ssdt *s = acpi->ssdt[acpi->ssdt_count];
203 /* Increment the number of ssdt we have */

Completed in 46 milliseconds