Lines Matching full:signature

164     char                    *Signature);
168 char *Signature,
173 char *Signature,
185 char *Signature,
193 * PARAMETERS: Signature - ACPI table signature
195 * RETURN: TRUE if signature is a special ACPI table
204 char *Signature) in AcpiUtIsSpecialTable() argument
207 if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_DSDT) || in AcpiUtIsSpecialTable()
208 ACPI_COMPARE_NAME (Signature, ACPI_SIG_OSDT) || in AcpiUtIsSpecialTable()
209 ACPI_COMPARE_NAME (Signature, ACPI_SIG_SSDT) || in AcpiUtIsSpecialTable()
210 ACPI_COMPARE_NAME (Signature, ACPI_SIG_FACS) || in AcpiUtIsSpecialTable()
211 ACPI_COMPARE_NAME (Signature, ACPI_RSDP_NAME)) in AcpiUtIsSpecialTable()
236 char *Signature; in DtCreateTemplates() local
254 /* Default (no signature option) is DSDT */ in DtCreateTemplates()
263 Signature = argv[AcpiGbl_Optind]; in DtCreateTemplates()
264 AcpiUtStrupr (Signature); in DtCreateTemplates()
269 TableCount = strtoul (Signature, &End, 0); in DtCreateTemplates()
270 if (Signature != End) in DtCreateTemplates()
287 if (!strcmp (Signature, "ALL")) in DtCreateTemplates()
296 * Normal case: Create template for each signature in DtCreateTemplates()
300 Signature = argv[AcpiGbl_Optind]; in DtCreateTemplates()
301 AcpiUtStrupr (Signature); in DtCreateTemplates()
303 Status = DtCreateOneTemplateFile (Signature, 0); in DtCreateTemplates()
326 * PARAMETERS: Signature - ACPI table signature
330 * DESCRIPTION: Create one template file of the requested signature.
336 char *Signature, in DtCreateOneTemplateFile() argument
344 * Validate signature and get the template data: in DtCreateOneTemplateFile()
345 * 1) Signature must be 4 characters in DtCreateOneTemplateFile()
346 * 2) Signature must be a recognized ACPI table in DtCreateOneTemplateFile()
347 * 3) There must be a template associated with the signature in DtCreateOneTemplateFile()
349 if (strlen (Signature) != ACPI_NAME_SIZE) in DtCreateOneTemplateFile()
352 "%s: Invalid ACPI table signature " in DtCreateOneTemplateFile()
353 "(length must be 4 characters)\n", Signature); in DtCreateOneTemplateFile()
361 if (!strcmp (Signature, "MADT")) in DtCreateOneTemplateFile()
363 Signature = "APIC"; in DtCreateOneTemplateFile()
365 else if (!strcmp (Signature, "FADT")) in DtCreateOneTemplateFile()
367 Signature = "FACP"; in DtCreateOneTemplateFile()
372 TableData = AcpiDmGetTableData (Signature); in DtCreateOneTemplateFile()
377 fprintf (stderr, "%4.4s: No template available\n", Signature); in DtCreateOneTemplateFile()
381 else if (!AcpiUtIsSpecialTable (Signature)) in DtCreateOneTemplateFile()
384 "%4.4s: Unrecognized ACPI table signature\n", Signature); in DtCreateOneTemplateFile()
388 Status = DtCreateOneTemplate (Signature, TableCount, TableData); in DtCreateOneTemplateFile()
417 for (TableData = AcpiDmTableData; TableData->Signature; TableData++) in DtCreateAllTemplates()
423 Status = DtCreateOneTemplate (TableData->Signature, in DtCreateAllTemplates()
475 * PARAMETERS: Signature - ACPI signature, NULL terminated.
488 char *Signature, in DtCreateOneTemplate() argument
502 Signature, FILE_SUFFIX_ASL_CODE); in DtCreateOneTemplate()
533 Signature); in DtCreateOneTemplate()
538 Signature, TableCount); in DtCreateOneTemplate()
570 if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_DSDT)) in DtCreateOneTemplate()
593 else if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_SSDT)) in DtCreateOneTemplate()
603 else if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_OSDT)) in DtCreateOneTemplate()
613 else if (ACPI_COMPARE_NAME (Signature, ACPI_SIG_FACS)) in DtCreateOneTemplate()
618 else if (ACPI_COMPARE_NAME (Signature, ACPI_RSDP_NAME)) in DtCreateOneTemplate()
626 "%4.4s, Unrecognized ACPI table signature\n", Signature); in DtCreateOneTemplate()
637 Signature, DisasmFilename); in DtCreateOneTemplate()
644 Signature, TableCount, DisasmFilename); in DtCreateOneTemplate()
660 * Signature - ACPI signature for the block
677 char *Signature, in DtEmitDefinitionBlock() argument
690 Signature, Signature, Instance, Signature, Instance); in DtEmitDefinitionBlock()
696 Signature, Filename); in DtEmitDefinitionBlock()