Home
last modified time | relevance | path

Searched refs:temp_list (Results 1 – 2 of 2) sorted by relevance

/DragonOS-0.1.8/kernel/src/time/
Dclocksource.rs297 let mut temp_list = list_guard.split_off(spilt_pos); in clocksource_enqueue() localVariable
300 list_guard.append(&mut temp_list); in clocksource_enqueue()
425 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue_watchdog() localVariable
426 temp_list.pop_front(); in clocksource_dequeue_watchdog()
427 list.append(&mut temp_list); in clocksource_dequeue_watchdog()
466 let mut temp_list = clocksource_list.split_off(replace_pos); in clocksource_dequeue_watchdog() localVariable
467 let new_wd = temp_list.front().unwrap().clone(); in clocksource_dequeue_watchdog()
468 clocksource_list.append(&mut temp_list); in clocksource_dequeue_watchdog()
475 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue_watchdog() localVariable
476 temp_list.pop_front(); in clocksource_dequeue_watchdog()
[all …]
Dtimer.rs108 let mut temp_list: LinkedList<Arc<Timer>> = timer_list.split_off(split_pos); in activate() localVariable
110 timer_list.append(&mut temp_list); in activate()