Lines Matching refs:Signature
280 char *Signature; in AcpiOsGetTableByIndex() local
296 Signature = malloc (ACPI_NAMESEG_SIZE + 1); in AcpiOsGetTableByIndex()
297 if (!Signature) in AcpiOsGetTableByIndex()
302 Signature = memmove (Signature, &Gbl_AvailableTableSignatures[Index], ACPI_NAMESEG_SIZE); in AcpiOsGetTableByIndex()
309 if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_SSDT)) in AcpiOsGetTableByIndex()
319 Status = AcpiOsGetTableByName (Signature, CurrentInstance, Table, Address); in AcpiOsGetTableByIndex()
325 ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_SSDT)) in AcpiOsGetTableByIndex()
331 free (Signature); in AcpiOsGetTableByIndex()
422 char *Signature, in WindowsGetTableFromRegistry() argument
443 if (AcpiUtSafeStrcat(KeyBuffer, sizeof(KeyBuffer), Signature)) in WindowsGetTableFromRegistry()
454 if (Instance > 0 && ACPI_COMPARE_NAMESEG(Signature, ACPI_SIG_SSDT)) in WindowsGetTableFromRegistry()
483 if (ACPI_COMPARE_NAMESEG(Signature, "FACP")) in WindowsGetTableFromRegistry()
485 Signature = "FADT"; in WindowsGetTableFromRegistry()
487 else if (ACPI_COMPARE_NAMESEG(Signature, "XSDT")) in WindowsGetTableFromRegistry()
489 Signature = "RSDT"; in WindowsGetTableFromRegistry()
491 else if (ACPI_COMPARE_NAMESEG(Signature, ACPI_SIG_SSDT)) in WindowsGetTableFromRegistry()
503 Signature, KeyBuffer, WindowsFormatException(WinStatus), WinStatus); in WindowsGetTableFromRegistry()
528 Signature, WindowsFormatException(WinStatus)); in WindowsGetTableFromRegistry()
548 Signature, WindowsFormatException(WinStatus)); in WindowsGetTableFromRegistry()
566 Signature, WindowsFormatException(WinStatus)); in WindowsGetTableFromRegistry()
588 Signature, WindowsFormatException(WinStatus)); in WindowsGetTableFromRegistry()
629 char *Signature, in AcpiOsGetTableByName() argument
643 if (Instance > 0 && !ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_SSDT)) in AcpiOsGetTableByName()
648 if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_SSDT)) in AcpiOsGetTableByName()
656 UIntSignature = *ACPI_CAST_PTR (UINT32, Signature); in AcpiOsGetTableByName()
660 fprintf(stderr, "The table signature %s does not exist.", Signature); in AcpiOsGetTableByName()
675 fprintf (stderr, "Could not read %s data\n", Signature); in AcpiOsGetTableByName()