Lines Matching refs:list_guard
289 let list_guard = &mut CLOCKSOURCE_LIST.lock(); in clocksource_enqueue() localVariable
291 for (pos, ele) in list_guard.iter().enumerate() { in clocksource_enqueue()
297 let mut temp_list = list_guard.split_off(spilt_pos); in clocksource_enqueue()
299 list_guard.push_back(cs); in clocksource_enqueue()
300 list_guard.append(&mut temp_list); in clocksource_enqueue()
322 let mut list_guard = WATCHDOG_LIST.lock_irqsave(); in clocksource_enqueue_watchdog() localVariable
328 list_guard.push_back(cs); in clocksource_enqueue_watchdog()
343 let mut list_guard = WATCHDOG_LIST.lock(); in clocksource_enqueue_watchdog() localVariable
344 list_guard.push_back(cs.clone()); in clocksource_enqueue_watchdog()
345 drop(list_guard); in clocksource_enqueue_watchdog()
779 let list_guard = WATCHDOG_LIST.lock(); in clocksource_reset_watchdog() localVariable
780 for ele in list_guard.iter() { in clocksource_reset_watchdog()
794 let list_guard = CLOCKSOURCE_LIST.lock(); in clocksource_select() localVariable
795 if unsafe { FINISHED_BOOTING.load(Ordering::Relaxed) } || list_guard.is_empty() { in clocksource_select()
798 let mut best = list_guard.front().unwrap().clone(); in clocksource_select()
801 for ele in list_guard.iter() { in clocksource_select()