Lines Matching refs:time
98 * there are active (or time-wait) PCBs.
257 * @param msecs time in milliseconds after that the timer should expire
279 timeout->time = msecs;
291 if (next_timeout->time > msecs) {
292 next_timeout->time -= msecs;
297 timeout->time -= t->time;
298 if (t->next == NULL || t->next->time > timeout->time) {
300 t->next->time -= timeout->time;
338 /* If not the last one, add time of this one back to next */
340 t->next->time += t->time;
378 if (tmptimeout && (tmptimeout->time <= diff)) {
382 diff -= tmptimeout->time;
404 * time (e.g. while saving energy) to prevent all timer functions of that
434 if (next_timeout->time > 0) {
435 time_needed = sys_arch_mbox_fetch(mbox, msg, next_timeout->time);
441 /* If time == SYS_ARCH_TIMEOUT, a timeout occured before a message
467 /* If time != SYS_ARCH_TIMEOUT, a message was received before the timeout
468 occured. The time variable is set to the number of
470 if (time_needed < next_timeout->time) {
471 next_timeout->time -= time_needed;
473 next_timeout->time = 0;