Home | History | Annotate | Download | only in apps

Lines Matching refs:rc

329 	EFI_STATUS rc = EFI_SUCCESS;
343 rc = test_failure();
344 if (EFI_ERROR(rc)) {
349 rc, EFI_UNSUPPORTED);
353 rc = test_call0();
354 if (!EFI_ERROR(rc)) {
357 Print(L"0 args failed: 0x%016x\n", rc);
358 return rc;
361 rc = test_call1();
362 if (!EFI_ERROR(rc)) {
365 Print(L"1 arg failed: 0x%016x\n", rc);
366 return rc;
369 rc = test_call2();
370 if (!EFI_ERROR(rc)) {
373 Print(L"2 args failed: 0x%016x\n", rc);
374 return rc;
377 rc = test_call3();
378 if (!EFI_ERROR(rc)) {
381 Print(L"3 args failed: 0x%016x\n", rc);
382 return rc;
385 rc = test_call4();
386 if (!EFI_ERROR(rc)) {
389 Print(L"4 args failed: 0x%016x\n", rc);
390 return rc;
393 rc = test_call5();
394 if (!EFI_ERROR(rc)) {
397 Print(L"5 args failed: 0x%016x\n", rc);
398 return rc;
401 rc = test_call6();
402 if (!EFI_ERROR(rc)) {
405 Print(L"6 args failed: 0x%016x\n", rc);
406 return rc;
409 rc = test_call7();
410 if (!EFI_ERROR(rc)) {
413 Print(L"7 args failed: 0x%016x\n", rc);
414 return rc;
417 rc = test_call8();
418 if (!EFI_ERROR(rc)) {
421 Print(L"8 args failed: 0x%016x\n", rc);
422 return rc;
425 rc = test_call9();
426 if (!EFI_ERROR(rc)) {
429 Print(L"9 args failed: 0x%016x\n", rc);
430 return rc;
433 rc = test_call10();
434 if (!EFI_ERROR(rc)) {
437 Print(L"10 args failed: 0x%016x\n", rc);
438 return rc;
441 return rc;