Lines Matching refs:token
107 cell_t token; in rtas_gettime() local
110 token = rtas_token_lookup("get-time-of-day"); in rtas_gettime()
111 if (token == -1) in rtas_gettime()
113 error = rtas_call_method(token, 0, 8, &tod[0], &tod[1], &tod[2], in rtas_gettime()
135 cell_t token, status; in rtas_settime() local
138 token = rtas_token_lookup("set-time-of-day"); in rtas_settime()
139 if (token == -1) in rtas_settime()
143 error = rtas_call_method(token, 7, 1, ct.year, ct.mon, ct.day, ct.hour, in rtas_settime()
156 cell_t token, status; in rtas_shutdown() local
159 token = rtas_token_lookup("power-off"); in rtas_shutdown()
160 if (token == -1) in rtas_shutdown()
163 rtas_call_method(token, 2, 1, 0, 0, &status); in rtas_shutdown()
165 token = rtas_token_lookup("system-reboot"); in rtas_shutdown()
166 if (token == -1) in rtas_shutdown()
169 rtas_call_method(token, 0, 1, &status); in rtas_shutdown()