Home
last modified time | relevance | path

Searched refs:active_efi_ops (Results 1 – 3 of 3) sorted by relevance

/freebsd/sys/sys/
H A Defi.h294 extern const struct efi_ops *active_efi_ops;
300 if (active_efi_ops->rt_ok == NULL) in efi_rt_ok()
302 return (active_efi_ops->rt_ok()); in efi_rt_ok()
308 if (active_efi_ops->get_table == NULL) in efi_get_table()
310 return (active_efi_ops->get_table(guid, ptr)); in efi_get_table()
316 if (active_efi_ops->copy_table == NULL) in efi_copy_table()
318 return (active_efi_ops->copy_table(guid, buf, buf_len, table_len)); in efi_copy_table()
324 if (active_efi_ops->get_time == NULL) in efi_get_time()
326 return (active_efi_ops->get_time(tm)); in efi_get_time()
332 if (active_efi_ops->get_time_capabilities == NULL) in efi_get_time_capabilities()
[all …]
/freebsd/sys/dev/xen/efi/
H A Dpvefi.c228 prev = active_efi_ops; in modevents()
229 active_efi_ops = &pvefi_ops; in modevents()
234 active_efi_ops = prev; in modevents()
/freebsd/sys/dev/efidev/
H A Defirt.c849 const struct efi_ops *active_efi_ops = &efi_ops; variable