Lines Matching refs:KVVec
6 alloc::kvec::KVVec,
20 contexts: KVVec::new(),
25 contexts: KVVec<Arc<Context>>,
28 pub(crate) fn get_all_contexts() -> Result<KVVec<Arc<Context>>> { in get_all_contexts()
30 let mut ctxs = KVVec::with_capacity(lock.contexts.len(), GFP_KERNEL)?; in get_all_contexts()
42 all_procs: KVVec<Arc<Process>>,
60 all_procs: KVVec::new(), in new()
156 pub(crate) fn get_all_procs(&self) -> Result<KVVec<Arc<Process>>> { in get_all_procs()
158 let mut procs = KVVec::with_capacity(lock.all_procs.len(), GFP_KERNEL)?; in get_all_procs()
165 pub(crate) fn get_procs_with_pid(&self, pid: i32) -> Result<KVVec<Arc<Process>>> { in get_procs_with_pid()
167 let mut matching_procs = KVVec::new(); in get_procs_with_pid()