Lines Matching refs:boottime
16 static struct efi_boot_services *boottime; variable
47 boottime = systable->boottime; in setup()
49 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_SIGNAL, in setup()
57 ret = boottime->create_event(EVT_TIMER | EVT_NOTIFY_WAIT, in setup()
78 ret = boottime->close_event(event_notify); in teardown()
86 ret = boottime->close_event(event_wait); in teardown()
93 boottime->restore_tpl(TPL_APPLICATION); in teardown()
119 ret = boottime->set_timer(event_notify, EFI_TIMER_PERIODIC, 100000); in execute()
125 ret = boottime->set_timer(event_wait, EFI_TIMER_RELATIVE, 1000000); in execute()
131 ret = boottime->wait_for_event(1, &event_wait, &index); in execute()
136 ret = boottime->check_event(event_wait); in execute()
153 ret = boottime->set_timer(event_notify, EFI_TIMER_STOP, 0); in execute()
159 old_tpl = boottime->raise_tpl(TPL_CALLBACK); in execute()
166 ret = boottime->set_timer(event_notify, EFI_TIMER_PERIODIC, 100000); in execute()
172 ret = boottime->set_timer(event_wait, EFI_TIMER_RELATIVE, 1000000); in execute()
178 ret = boottime->check_event(event_wait); in execute()
192 ret = boottime->set_timer(event_wait, EFI_TIMER_RELATIVE, 1000); in execute()
198 boottime->restore_tpl(TPL_APPLICATION); in execute()
199 ret = boottime->wait_for_event(1, &event_wait, &index); in execute()
211 ret = boottime->set_timer(event_wait, EFI_TIMER_STOP, 0); in execute()