Lines Matching refs:now
81 struct rtc_time now; in reset_time() local
83 os_localtime(&now); in reset_time()
84 plat->base_time = rtc_mktime(&now); in reset_time()
93 long now; in sandbox_i2c_rtc_get() local
97 now = rtc_mktime(&tm_now); in sandbox_i2c_rtc_get()
99 now = plat->base_time; in sandbox_i2c_rtc_get()
102 return rtc_to_tm(now + plat->offset, time); in sandbox_i2c_rtc_get()
109 long now; in sandbox_i2c_rtc_set() local
113 now = rtc_mktime(&tm_now); in sandbox_i2c_rtc_set()
115 now = plat->base_time; in sandbox_i2c_rtc_set()
117 plat->offset = rtc_mktime(time) - now; in sandbox_i2c_rtc_set()