Lines Matching refs:now
148 time_t now, old_timestamp = 0; in set_date() local
177 now = mktime(&tm_new); in set_date()
180 ret = rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_SET_TIME, &now); in set_date()
195 time_t now, old_timestamp = 0; in set_time() local
224 now = mktime(&tm_new); in set_time()
227 ret = rt_device_control(_rtc_device, RT_DEVICE_CTRL_RTC_SET_TIME, &now); in set_time()
282 time_t now = (time_t)0; in date() local
295 now = tv.tv_sec; in date()
299 rt_kprintf("local time: %.*s", 25U, ctime(&now)); in date()
355 now = mktime(&tm_new); in date()
356 err = set_timestamp(now); in date()
362 get_timestamp(&now); /* get new timestamp */ in date()
364 rt_kprintf("now: %.*s", 25, ctime(&now)); in date()