Lines Matching refs:list
407 let mut list = WATCHDOG_LIST.lock(); in clocksource_dequeue_watchdog() localVariable
408 let mut size = list.len(); in clocksource_dequeue_watchdog()
411 for (pos, ele) in list.iter().enumerate() { in clocksource_dequeue_watchdog()
425 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue_watchdog()
427 list.append(&mut temp_list); in clocksource_dequeue_watchdog()
435 for ele in list.iter() { in clocksource_dequeue_watchdog()
475 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue_watchdog()
477 list.append(&mut temp_list); in clocksource_dequeue_watchdog()
488 size = list.len(); in clocksource_dequeue_watchdog()
495 let mut list = CLOCKSOURCE_LIST.lock(); in clocksource_dequeue() localVariable
497 let mut del_pos: usize = list.len(); in clocksource_dequeue()
498 for (pos, ele) in list.iter().enumerate() { in clocksource_dequeue()
507 if del_pos != list.len() { in clocksource_dequeue()
508 let mut temp_list = list.split_off(del_pos); in clocksource_dequeue()
510 list.append(&mut temp_list); in clocksource_dequeue()
622 let list = CLOCKSOURCE_LIST.lock(); in clocksource_resume() localVariable
623 for ele in list.iter() { in clocksource_resume()
638 let list = CLOCKSOURCE_LIST.lock(); in clocksource_suspend() localVariable
639 for ele in list.iter() { in clocksource_suspend()