Lines Matching defs:status
37 * Return: status code
42 efi_status_t status;
45 status = efi_bs_call(locate_protocol, &rng_proto, NULL, (void **)&rng);
46 if (status != EFI_SUCCESS)
47 return status;
63 * Return: status code
74 efi_status_t status;
76 status = efi_bs_call(locate_protocol, &rng_proto, NULL, (void **)&rng);
77 if (status != EFI_SUCCESS)
83 return status;
105 status = efi_bs_call(allocate_pool, EFI_ACPI_RECLAIM_MEMORY,
108 if (status != EFI_SUCCESS) {
114 status = efi_call_proto(rng, get_rng, &rng_algo_raw,
117 if (status == EFI_UNSUPPORTED)
122 status = efi_call_proto(rng, get_rng, NULL,
125 if (status == EFI_SUCCESS)
130 status = get_efi_var(L"RandomSeed", &rng_table_guid, NULL,
133 if (status == EFI_SUCCESS)
142 status = set_efi_var(L"RandomSeed", &rng_table_guid, 0,
145 if (status == EFI_SUCCESS)
160 status = efi_bs_call(install_configuration_table, &rng_table_guid, seed);
161 if (status != EFI_SUCCESS)
178 return status;