Lines Matching refs:KSet
19 pub struct KSet { struct
28 self_ref: Weak<KSet>, argument
31 impl Hash for KSet { implementation
38 impl core::cmp::Eq for KSet {} implementation
40 impl core::cmp::PartialEq for KSet { implementation
46 impl KSet { impl
76 join_kset: Option<Arc<KSet>>, in new_and_add() argument
78 let kset = KSet::new(name); in new_and_add()
91 pub fn register(&self, join_kset: Option<Arc<KSet>>) -> Result<(), SystemError> { in register()
149 impl KObject for KSet { implementation
186 fn kset(&self) -> Option<Arc<KSet>> { in kset() argument
190 fn set_kset(&self, kset: Option<Arc<KSet>>) { in set_kset() argument
210 kset: Option<Arc<KSet>>,
214 fn new(parent: Option<Weak<dyn KObject>>, kset: Option<Arc<KSet>>) -> Self { in new()