Home | History | Annotate | Download | only in dev

Lines Matching defs:efi_ops

60 static const struct efi_ops *efi_ops = NULL;
93 if (efi_ops == NULL) {
296 if (efi_ops->efi_gettab == NULL)
303 status = efi_ops->efi_gettab(&ioc->uuid, &addr);
374 status = efi_ops->efi_getvar(namebuf, &var->vendor, &var->attrib,
421 status = efi_ops->efi_nextvar(&namesize, namebuf, &var->vendor);
468 status = efi_ops->efi_setvar(namebuf, &var->vendor, var->attrib,
483 KASSERT(efi_ops != NULL);
500 efi_register_ops(const struct efi_ops *ops)
502 KASSERT(efi_ops == NULL);
503 efi_ops = ops;