Lines Matching refs:hdr
72 static void show_hob_details(const struct hob_header *hdr) in show_hob_details() argument
74 const void *ptr = hdr; in show_hob_details()
76 switch (hdr->type) { in show_hob_details()
94 const struct hob_header *hdr; in do_hob() local
114 hdr = gd->arch.hob_list; in do_hob()
116 printf("HOB list address: 0x%08x\n\n", (unsigned int)hdr); in do_hob()
122 for (i = 0; !end_of_hob(hdr); i++, hdr = get_next_hob(hdr)) { in do_hob()
125 printf("%02x | %08x | ", i, (unsigned int)hdr); in do_hob()
126 type = hdr->type; in do_hob()
135 printf("%-9s | %04x | ", desc, hdr->len); in do_hob()
141 guid = (efi_guid_t *)(hdr + 1); in do_hob()
154 show_hob_details(hdr); in do_hob()