Lines Matching refs:hlist
553 EFI_HANDLE *hlist; in efi_has_gop() local
557 hlist = NULL; in efi_has_gop()
558 status = BS->LocateHandle(ByProtocol, &gop_guid, NULL, &hsize, hlist); in efi_has_gop()
568 EFI_HANDLE *hlist; in efi_find_framebuffer() local
577 hlist = NULL; in efi_find_framebuffer()
578 status = BS->LocateHandle(ByProtocol, &gop_guid, NULL, &hsize, hlist); in efi_find_framebuffer()
580 hlist = malloc(hsize); in efi_find_framebuffer()
581 if (hlist == NULL) in efi_find_framebuffer()
584 hlist); in efi_find_framebuffer()
586 free(hlist); in efi_find_framebuffer()
591 nhandles = hsize / sizeof(*hlist); in efi_find_framebuffer()
601 status = OpenProtocolByHandle(hlist[i], &gop_guid, (void **)&tgop); in efi_find_framebuffer()
609 status = OpenProtocolByHandle(hlist[i], &conout_guid, &dummy); in efi_find_framebuffer()
611 gop_handle = hlist[i]; in efi_find_framebuffer()
615 gop_handle = hlist[i]; in efi_find_framebuffer()
620 free(hlist); in efi_find_framebuffer()