Searched refs:connected_profiles (Results 1 – 2 of 2) sorted by relevance
472 connected_profiles: HashMap<RawAddress, HashSet<Profile>>, field537 connected_profiles: HashMap::new(), in new()568 if let Some(connected_profiles) = self.connected_profiles.get(addr) { in is_any_profile_connected()569 return profiles.iter().any(|p| connected_profiles.contains(&p)); in is_any_profile_connected()581 self.connected_profiles.entry(addr).or_insert_with(HashSet::new).insert(profile); in add_connected_profile()597 self.connected_profiles.entry(addr).or_insert_with(HashSet::new).remove(&profile); in rm_connected_profile()1325 let is_profile_critical = match self.connected_profiles.get(&addr) { in dispatch_avrcp_callbacks()2246 let is_profile_cleared = self.connected_profiles.get(&addr).unwrap().is_empty(); in notify_media_capability_updated()2281 self.connected_profiles.remove(&addr); in notify_media_capability_updated()2288 let connected_profiles = self.connected_profiles.get(&addr).unwrap(); in notify_media_capability_updated() localVariable[all …]
560 let connected_profiles: Vec<(Profile, ProfileConnectionState)> = supported_profiles in cmd_adapter() localVariable583 print_info!("Connected profiles: {:?}", connected_profiles); in cmd_adapter()