Home | History | Annotate | Download | only in apps

Lines Matching defs:Status

21   EFI_STATUS Status;
25 Status = uefi_call_wrapper(BS->OpenProtocol, 6,
32 if (EFI_ERROR(Status)) {
33 Print(L"Cannot open proto: %d\n", Status);
34 return Status;
37 Status = uefi_call_wrapper(drv->SayHello, 2, L"Sample UEFI Driver");
38 if (EFI_ERROR(Status)) {
39 Print(L"Cannot call SayHello: %d\n", Status);
42 Status = uefi_call_wrapper(drv->GetNumberOfHello, 2, &NumberOfHello);
43 if (EFI_ERROR(Status)) {
44 Print(L"Cannot call GetNumberOfHello: %d\n", Status);
56 EFI_STATUS Status;
62 Status = LibLocateHandle(ByProtocol, &GnuEfiAppsDrv0ProtocolGuid,
64 if (EFI_ERROR(Status)) {
65 Print(L"Error looking up handles for proto: %d\n", Status);
66 return Status;
72 Status = PlayWithGnuEfiAppsDrv0Protocol(Handles[i]);
73 if (EFI_ERROR(Status))