Lines Matching refs:tod
105 cell_t tod[8]; in rtas_gettime() local
112 error = rtas_call_method(token, 0, 8, &tod[0], &tod[1], &tod[2], in rtas_gettime()
113 &tod[3], &tod[4], &tod[5], &tod[6], &tod[7]); in rtas_gettime()
116 if (tod[0] != 0) in rtas_gettime()
117 return ((tod[0] == -1) ? ENXIO : EAGAIN); in rtas_gettime()
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()