Lines Matching refs:allocations
22 allocations: AllocationMap, field
32 allocations: Arc::new(Mutex::new(HashMap::new())), in new()
41 let allocations = self.allocations.lock().await; in close() localVariable
42 for a in allocations.values() { in close()
56 let guarded = self.allocations.lock().await; in get_allocations_info()
77 let allocations = self.allocations.lock().await; in get_allocation() localVariable
78 allocations.get(five_tuple).map(Arc::clone) in get_allocation()
110 a.allocations = Some(Arc::clone(&self.allocations)); in create_allocation()
118 let mut allocations = self.allocations.lock().await; in create_allocation() localVariable
119 allocations.insert(five_tuple, Arc::clone(&a)); in create_allocation()
127 let allocation = self.allocations.lock().await.remove(five_tuple); in delete_allocation()
139 let mut allocations = self.allocations.lock().await; in delete_allocations_by_username() localVariable
144 allocations.retain(|_, allocation| { in delete_allocations_by_username()