Lines Matching refs:token
111 cell_t token; in rtas_gettime() local
114 token = rtas_token_lookup("get-time-of-day"); in rtas_gettime()
115 if (token == -1) in rtas_gettime()
117 error = rtas_call_method(token, 0, 8, &tod[0], &tod[1], &tod[2], in rtas_gettime()
139 cell_t token, status; in rtas_settime() local
142 token = rtas_token_lookup("set-time-of-day"); in rtas_settime()
143 if (token == -1) in rtas_settime()
147 error = rtas_call_method(token, 7, 1, ct.year, ct.mon, ct.day, ct.hour, in rtas_settime()
160 cell_t token, status; in rtas_shutdown() local
163 token = rtas_token_lookup("power-off"); in rtas_shutdown()
164 if (token == -1) in rtas_shutdown()
167 rtas_call_method(token, 2, 1, 0, 0, &status); in rtas_shutdown()
169 token = rtas_token_lookup("system-reboot"); in rtas_shutdown()
170 if (token == -1) in rtas_shutdown()
173 rtas_call_method(token, 0, 1, &status); in rtas_shutdown()