Lines Matching refs:hdr
20 const struct hob_header *hdr; in hob_get_next_hob() local
22 hdr = hob_list; in hob_get_next_hob()
25 while (!end_of_hob(hdr)) { in hob_get_next_hob()
26 if (hdr->type == type) in hob_get_next_hob()
27 return hdr; in hob_get_next_hob()
29 hdr = get_next_hob(hdr); in hob_get_next_hob()
46 const struct hob_header *hdr; in hob_get_next_guid_hob() local
49 hdr = hob_list; in hob_get_next_guid_hob()
50 while ((hdr = hob_get_next_hob(HOB_TYPE_GUID_EXT, hdr))) { in hob_get_next_guid_hob()
51 guid_hob = (struct hob_guid *)hdr; in hob_get_next_guid_hob()
54 hdr = get_next_hob(hdr); in hob_get_next_guid_hob()
57 return hdr; in hob_get_next_guid_hob()