Home | History | Annotate | Download | only in strace

Lines Matching refs:rt

742 print_rtc(struct tcb *tcp, const struct rtc_time *rt)
746 rt->tm_sec, rt->tm_min, rt->tm_hour,
747 rt->tm_mday, rt->tm_mon, rt->tm_year);
750 rt->tm_wday, rt->tm_yday, rt->tm_isdst);
762 struct rtc_time rt;
763 if (umove(tcp, arg, &rt) < 0)
767 print_rtc(tcp, &rt);
774 struct rtc_time rt;
775 if (syserror(tcp) || umove(tcp, arg, &rt) < 0)
779 print_rtc(tcp, &rt);