Searched refs:CompatibleTable (Results 1 – 5 of 5) sorted by relevance
4 CompatibleTable,19 fn compatible_table(&self) -> CompatibleTable; in compatible_table() argument
4 CompatibleTable,14 fn compatible_table(&self) -> CompatibleTable; in compatible_table() argument
23 pub struct CompatibleTable(BTreeSet<&'static str>); struct26 impl CompatibleTable { implementation32 pub fn new(id_vec: Vec<&'static str>) -> CompatibleTable { in new() argument33 CompatibleTable(BTreeSet::from_iter(id_vec.iter().cloned())) in new()40 pub fn matches(&self, other: &CompatibleTable) -> bool { in matches()68 fn get_compatible_table(&self) -> CompatibleTable { in get_compatible_table() argument69 CompatibleTable::new(vec!["platform"]) in get_compatible_table()283 fn compatible_table(&self) -> CompatibleTable { in compatible_table() argument284 CompatibleTable::new(vec!["platform"]) in compatible_table()
7 self, platform_device::PlatformDevice, platform_driver::PlatformDriver, CompatibleTable,131 fn compatible_table(&self) -> platform::CompatibleTable { in compatible_table() argument132 platform::CompatibleTable::new(vec!["uart"]) in compatible_table()254 fn compatible_table(&self) -> platform::CompatibleTable { in compatible_table() argument255 return CompatibleTable::new(vec!["uart"]); in compatible_table()
88 pub struct CompatibleTable(BTreeSet<&'static str>);