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