Lines Matching refs:token
110 cell_t token; in rtas_gettime() local
113 token = rtas_token_lookup("get-time-of-day"); in rtas_gettime()
114 if (token == -1) in rtas_gettime()
116 error = rtas_call_method(token, 0, 8, &tod[0], &tod[1], &tod[2], in rtas_gettime()
138 cell_t token, status; in rtas_settime() local
141 token = rtas_token_lookup("set-time-of-day"); in rtas_settime()
142 if (token == -1) in rtas_settime()
146 error = rtas_call_method(token, 7, 1, ct.year, ct.mon, ct.day, ct.hour, in rtas_settime()
159 cell_t token, status; in rtas_shutdown() local
162 token = rtas_token_lookup("power-off"); in rtas_shutdown()
163 if (token == -1) in rtas_shutdown()
166 rtas_call_method(token, 2, 1, 0, 0, &status); in rtas_shutdown()
168 token = rtas_token_lookup("system-reboot"); in rtas_shutdown()
169 if (token == -1) in rtas_shutdown()
172 rtas_call_method(token, 0, 1, &status); in rtas_shutdown()