Lines Matching defs:Subtable
401 DT_SUBTABLE *Subtable;
541 Subtable = NULL;
543 &Subtable);
549 DtInsertSubtable (AslGbl_RootTable, Subtable);
585 * DESCRIPTION: Compile a subtable
597 DT_SUBTABLE *Subtable;
621 /* Ignore optional subtable if name does not match */
636 Subtable = UtSubtableCacheCalloc ();
641 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
644 Subtable->Length = Length;
645 Subtable->TotalLength = Length;
646 Buffer = Subtable->Buffer;
649 Subtable->Name = LocalField->Name;
652 * Main loop walks the info table for this ACPI table or subtable
730 * or Notify in-line subtable
791 /* Field is an Integer that will contain a subtable length */
793 Subtable->LengthField = Buffer;
794 Subtable->SizeOfLengthField = FieldLength;
803 *RetSubtable = Subtable;
807 ACPI_FREE (Subtable->Buffer);
808 ACPI_FREE (Subtable);
835 DT_SUBTABLE *Subtable;
840 Status = DtCompileTable (PFieldList, TableInfo1, &Subtable);
847 DtInsertSubtable (ParentTable, Subtable);
851 Status = DtCompileTable (PFieldList, TableInfo2, &Subtable);
857 DtInsertSubtable (ParentTable, Subtable);
873 * DESCRIPTION: Compile a subtable for padding purpose
882 DT_SUBTABLE *Subtable;
887 Subtable = UtSubtableCacheCalloc ();
892 Subtable->Buffer = ACPI_CAST_PTR (UINT8, String);
895 Subtable->Length = Length;
896 Subtable->TotalLength = Length;
897 /* Buffer = Subtable->Buffer; */
899 *RetSubtable = Subtable;