Home
last modified time | relevance | path

Searched refs:EVT_TIMER (Results 1 – 10 of 10) sorted by relevance

/third_party/uboot/u-boot-2020.01/lib/efi_selftest/
Defi_selftest_watchdog.c79 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, in setup()
87 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_WAIT, in setup()
Defi_selftest_events.c51 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, in setup()
58 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_WAIT, in setup()
Defi_selftest_tpl.c49 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, in setup()
57 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_WAIT, in setup()
Defi_selftest_bitblt.c109 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, in setup()
Defi_selftest_snp.c189 ret = boottime->create_event(EVT_TIMER, TPL_CALLBACK, NULL, NULL, in setup()
/third_party/uboot/u-boot-2020.01/lib/efi_loader/
Defi_watchdog.c68 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK, in efi_watchdog_register()
Defi_boottime.c656 case EVT_TIMER: in efi_create_event()
658 case EVT_TIMER | EVT_NOTIFY_SIGNAL: in efi_create_event()
660 case EVT_TIMER | EVT_NOTIFY_WAIT: in efi_create_event()
783 if (!(evt->type & EVT_TIMER) || now < evt->trigger_next) in efi_timer_check()
817 if (efi_is_event(event) != EFI_SUCCESS || !(event->type & EVT_TIMER)) in efi_set_timer()
Defi_console.c1143 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_CALLBACK, in efi_console_register()
Defi_net.c923 r = efi_create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, TPL_NOTIFY, in efi_net_register()
/third_party/uboot/u-boot-2020.01/include/
Defi_api.h46 #define EVT_TIMER 0x80000000 macro