Lines Matching refs:rec
176 coreboot_copy_string(const struct cb_string *rec, char *dst, size_t dstlen) in coreboot_copy_string() argument
180 slen = rec->size - sizeof(struct cb_record); in coreboot_copy_string()
183 memcpy(dst, rec->string, slen); in coreboot_copy_string()
222 struct cb_record *rec; in coreboot_parse_table() local
230 rec = (struct cb_record *)entry; in coreboot_parse_table()
231 rec_size = rec->size; in coreboot_parse_table()
238 switch (rec->tag) { in coreboot_parse_table()
240 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
245 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
250 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
255 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
260 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
265 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
271 coreboot_copy_string((struct cb_string *)rec, in coreboot_parse_table()
277 (struct cb_version_timestamp *)rec; in coreboot_parse_table()
290 (struct cb_mainboard *)rec); in coreboot_parse_table()
294 struct cb_serial *ser = (struct cb_serial *)rec; in coreboot_parse_table()
306 struct cb_tsc_info *tsc = (struct cb_tsc_info *)rec; in coreboot_parse_table()
316 struct cb_pcie *pcie = (struct cb_pcie *)rec; in coreboot_parse_table()
327 (struct cb_boot_media_params *)rec; in coreboot_parse_table()
340 struct cb_mmc_info *mmc = (struct cb_mmc_info *)rec; in coreboot_parse_table()
350 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
361 (struct cb_cbmem_entry *)rec; in coreboot_parse_table()
380 (struct cb_board_config *)rec; in coreboot_parse_table()
393 struct cb_macs *macs = (struct cb_macs *)rec; in coreboot_parse_table()
412 (struct cb_acpi_rsdp *)rec; in coreboot_parse_table()
423 (struct cb_spi_flash *)rec; in coreboot_parse_table()
436 struct cb_console *con = (struct cb_console *)rec; in coreboot_parse_table()
447 (struct cb_framebuffer *)rec; in coreboot_parse_table()
461 struct cb_gpios *gpios = (struct cb_gpios *)rec; in coreboot_parse_table()
479 struct cb_tpm_ppi *tpm = (struct cb_tpm_ppi *)rec; in coreboot_parse_table()
490 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
500 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
510 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
520 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
530 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
540 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
550 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
560 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
570 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
581 struct cb_cbmem_ref *ref = (struct cb_cbmem_ref *)rec; in coreboot_parse_table()
592 (struct cb_smmstorev2 *)rec; in coreboot_parse_table()
1206 struct cb_record *rec; in coreboot_identify() local
1251 rec = (struct cb_record *)entry; in coreboot_identify()
1252 rec_size = rec->size; in coreboot_identify()
1257 if (rec->tag == CB_TAG_FORWARD) { in coreboot_identify()