Lines Matching refs:ct
105 struct clocktime ct; in rtas_gettime() local
120 ct.year = tod[1]; in rtas_gettime()
121 ct.mon = tod[2]; in rtas_gettime()
122 ct.day = tod[3]; in rtas_gettime()
123 ct.hour = tod[4]; in rtas_gettime()
124 ct.min = tod[5]; in rtas_gettime()
125 ct.sec = tod[6]; in rtas_gettime()
126 ct.nsec = tod[7]; in rtas_gettime()
128 return (clock_ct_to_ts(&ct, ts)); in rtas_gettime()
134 struct clocktime ct; in rtas_settime() local
142 clock_ts_to_ct(ts, &ct); in rtas_settime()
143 error = rtas_call_method(token, 7, 1, ct.year, ct.mon, ct.day, ct.hour, in rtas_settime()
144 ct.min, ct.sec, ct.nsec, &status); in rtas_settime()