Lines Matching refs:list
526 let mut list = WATCHDOG_LIST.lock_irqsave(); in clocksource_dequeue_watchdog() localVariable
527 let mut size = list.len(); in clocksource_dequeue_watchdog()
530 for (pos, ele) in list.iter().enumerate() { in clocksource_dequeue_watchdog()
544 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue_watchdog()
546 list.append(&mut temp_list); in clocksource_dequeue_watchdog()
554 for ele in list.iter() { in clocksource_dequeue_watchdog()
594 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue_watchdog()
596 list.append(&mut temp_list); in clocksource_dequeue_watchdog()
607 size = list.len(); in clocksource_dequeue_watchdog()
614 let mut list = CLOCKSOURCE_LIST.lock(); in clocksource_dequeue() localVariable
616 let mut del_pos: usize = list.len(); in clocksource_dequeue()
617 for (pos, ele) in list.iter().enumerate() { in clocksource_dequeue()
626 if del_pos != list.len() { in clocksource_dequeue()
627 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue()
629 list.append(&mut temp_list); in clocksource_dequeue()
765 let list = CLOCKSOURCE_LIST.lock(); in clocksource_resume() localVariable
766 for ele in list.iter() { in clocksource_resume()
781 let list = CLOCKSOURCE_LIST.lock(); in clocksource_suspend() localVariable
782 for ele in list.iter() { in clocksource_suspend()