Home | History | Annotate | Download | only in compiler

Lines Matching defs:Signature

402     char                    *Signature;
408 /* Verify that we at least have a table signature and save it */
410 Signature = DtGetFieldValue (*FieldList);
411 if (!Signature)
413 snprintf (AslGbl_MsgBuffer, sizeof(AslGbl_MsgBuffer), "Expected \"%s\"", "Signature");
419 AslGbl_Signature = UtLocalCacheCalloc (strlen (Signature) + 1);
420 strcpy (AslGbl_Signature, Signature);
427 if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_FACS))
438 else if (ACPI_VALIDATE_RSDP_SIG (Signature))
443 else if (ACPI_COMPARE_NAMESEG (Signature, ACPI_SIG_S3PT))
456 * If the first field is named "CDAT Table Length" (not "Signature"),
458 * a signature). Instead, the TableLength field is where the
459 * signature would (normally) be.
466 * Signature field, (At least the high-order byte should be zero).
512 /* Validate the signature via the ACPI table list */
514 TableData = AcpiDmGetTableData (Signature);
517 /* Unknown table signature and/or force generic compile */