Lines Matching full:full
39 let full = AtomicBool::new(false); in drive_unindexed() localVariable
42 full: &full, in drive_unindexed()
53 full: &'f AtomicBool, field
80 full: self.full, in into_folder()
84 fn full(&self) -> bool { in full() function
85 self.full.load(Ordering::Relaxed) || self.base.full() in full()
108 full: &'f AtomicBool, field
120 None => self.full.store(true, Ordering::Relaxed), in consume()
129 fn some<T>(full: &AtomicBool) -> impl Fn(&Option<T>) -> bool + '_ { in consume_iter()
131 Some(_) => !full.load(Ordering::Relaxed), in consume_iter()
133 full.store(true, Ordering::Relaxed); in consume_iter()
141 .take_while(some(self.full)) in consume_iter()
151 fn full(&self) -> bool { in full() function
152 self.full.load(Ordering::Relaxed) || self.base.full() in full()