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