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_NAMESEG (Signature, ACPI_SIG_DSDT) || in AcpiUtIsSpecialTable()
208 ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_OSDT) || in AcpiUtIsSpecialTable()
209 ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_SSDT) || in AcpiUtIsSpecialTable()
210 ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_FACS) || in AcpiUtIsSpecialTable()
211 ACPI_COMPARE_NAMESEG (Signature, ACPI_RSDP_NAME)) in AcpiUtIsSpecialTable()
236 char *Signature; in DtCreateTemplates() local
254 /* Default (no signature option) is DSDT */ in DtCreateTemplates()
264 Signature = argv[AcpiGbl_Optind]; in DtCreateTemplates()
265 AcpiUtStrupr (Signature); in DtCreateTemplates()
270 TableCount = strtoul (Signature, &End, 0); in DtCreateTemplates()
271 if (Signature != End) in DtCreateTemplates()
288 if (!strcmp (Signature, "ALL")) in DtCreateTemplates()
297 * Normal case: Create template for each signature in DtCreateTemplates()
301 Signature = argv[AcpiGbl_Optind]; in DtCreateTemplates()
302 AcpiUtStrupr (Signature); in DtCreateTemplates()
304 Status = DtCreateOneTemplateFile (Signature, 0); in DtCreateTemplates()
327 * PARAMETERS: Signature - ACPI table signature
331 * DESCRIPTION: Create one template file of the requested signature.
337 char *Signature, in DtCreateOneTemplateFile() argument
345 * Validate signature and get the template data: in DtCreateOneTemplateFile()
346 * 1) Signature must be 4 characters in DtCreateOneTemplateFile()
347 * 2) Signature must be a recognized ACPI table in DtCreateOneTemplateFile()
348 * 3) There must be a template associated with the signature in DtCreateOneTemplateFile()
350 if (strlen (Signature) != ACPI_NAMESEG_SIZE) in DtCreateOneTemplateFile()
353 "%s: Invalid ACPI table signature " in DtCreateOneTemplateFile()
354 "(length must be 4 characters)\n", Signature); in DtCreateOneTemplateFile()
362 if (!strcmp (Signature, "MADT")) in DtCreateOneTemplateFile()
364 Signature = "APIC"; in DtCreateOneTemplateFile()
366 else if (!strcmp (Signature, "FADT")) in DtCreateOneTemplateFile()
368 Signature = "FACP"; in DtCreateOneTemplateFile()
373 TableData = AcpiDmGetTableData (Signature); in DtCreateOneTemplateFile()
378 fprintf (stderr, "%4.4s: No template available\n", Signature); in DtCreateOneTemplateFile()
382 else if (!AcpiUtIsSpecialTable (Signature)) in DtCreateOneTemplateFile()
385 "%4.4s: Unrecognized ACPI table signature\n", Signature); in DtCreateOneTemplateFile()
389 Status = DtCreateOneTemplate (Signature, TableCount, TableData); in DtCreateOneTemplateFile()
418 for (TableData = AcpiDmTableData; TableData->Signature; TableData++) in DtCreateAllTemplates()
424 Status = DtCreateOneTemplate (TableData->Signature, in DtCreateAllTemplates()
476 * PARAMETERS: Signature - ACPI signature, NULL terminated.
489 char *Signature, in DtCreateOneTemplate() argument
503 Signature, FILE_SUFFIX_ASL_CODE); in DtCreateOneTemplate()
534 Signature); in DtCreateOneTemplate()
539 Signature, TableCount); in DtCreateOneTemplate()
571 if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_DSDT)) in DtCreateOneTemplate()
594 else if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_SSDT)) in DtCreateOneTemplate()
604 else if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_OSDT)) in DtCreateOneTemplate()
614 else if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_FACS)) in DtCreateOneTemplate()
619 else if (ACPI_COMPARE_NAMESEG (Signature, ACPI_RSDP_NAME)) in DtCreateOneTemplate()
627 "%4.4s, Unrecognized ACPI table signature\n", Signature); in DtCreateOneTemplate()
638 Signature, DisasmFilename); in DtCreateOneTemplate()
645 Signature, TableCount, DisasmFilename); in DtCreateOneTemplate()
661 * Signature - ACPI signature for the block
678 char *Signature, in DtEmitDefinitionBlock() argument
691 Signature, Signature, Instance, Signature, Instance); in DtEmitDefinitionBlock()
697 Signature, Filename); in DtEmitDefinitionBlock()