Home | History | Annotate | Download | only in hw

Lines Matching refs:table

72                                 "cannot add table\n", type);
77 struct smbios_structure_header *table = (void *)(header + 1);
78 if (type == table->type) {
79 fprintf(stderr, "SMBIOS type %d table already defined, "
173 struct smbios_table *table;
187 sizeof(*table) + size);
188 table = (struct smbios_table *)(smbios_entries + smbios_entries_len);
189 table->header.type = SMBIOS_TABLE_ENTRY;
190 table->header.length = cpu_to_le16(sizeof(*table) + size);
192 if (load_image(buf, table->data) != size) {
197 header = (struct smbios_structure_header *)(table->data);
200 smbios_entries_len += sizeof(*table) + size;