Lines Matching refs:tm
63 prefix##_get_time (efi_time_t *tm, efi_time_cap_t *tc) \
73 adjust_arg(tm), atc); \
80 prefix##_set_time (efi_time_t *tm) \
87 adjust_arg(tm)); \
95 efi_time_t *tm) \
103 adjust_arg(enabled), adjust_arg(pending), adjust_arg(tm)); \
110 prefix##_set_wakeup_time (efi_bool_t enabled, efi_time_t *tm) \
116 if (tm) \
117 atm = adjust_arg(tm); \
241 efi_time_t tm; in STUB_GET_TIME() local
243 if ((*efi.get_time)(&tm, NULL) != EFI_SUCCESS) { in STUB_GET_TIME()
248 ts->tv_sec = mktime(tm.year, tm.month, tm.day, in STUB_GET_TIME()
249 tm.hour, tm.minute, tm.second); in STUB_GET_TIME()
250 ts->tv_nsec = tm.nanosecond; in STUB_GET_TIME()