Searched refs:SupportedProfiles (Results 1 – 7 of 7) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/topshim/src/ |
D | btif.rs | 879 pub enum SupportedProfiles { enum 893 impl From<SupportedProfiles> for Vec<u8> { 894 fn from(item: SupportedProfiles) -> Self { in from() 896 SupportedProfiles::HidHost => "hidhost", in from() 897 SupportedProfiles::Hfp => "handsfree", in from() 898 SupportedProfiles::A2dp => "a2dp", in from() 899 SupportedProfiles::Gatt => "gatt", in from() 900 SupportedProfiles::Sdp => "sdp", in from() 901 SupportedProfiles::Socket => "socket", in from() 902 SupportedProfiles::HfClient => "handsfree_client", in from() [all …]
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | hf_client.rs | 2 use crate::btif::{BluetoothInterface, BtStatus, RawAddress, SupportedProfiles, ToggleableProfile}; 122 let r = intf.get_profile_interface(SupportedProfiles::HfClient); in new()
|
D | avrcp.rs | 1 use crate::btif::{BluetoothInterface, BtStatus, RawAddress, SupportedProfiles, ToggleableProfile}; 260 let r = intf.get_profile_interface(SupportedProfiles::AvrcpCtrl); in new()
|
D | socket.rs | 9 use crate::btif::{BluetoothInterface, BtStatus, RawAddress, SupportedProfiles, Uuid}; 142 let r = intf.get_profile_interface(SupportedProfiles::Socket); in new()
|
D | hid_host.rs | 3 BluetoothInterface, BtAddrType, BtStatus, BtTransport, RawAddress, SupportedProfiles, 198 let r = intf.get_profile_interface(SupportedProfiles::HidHost); in new()
|
D | sdp.rs | 10 ascii_to_string, ptr_to_vec, BluetoothInterface, BtStatus, RawAddress, SupportedProfiles, Uuid, 447 let r = intf.get_profile_interface(SupportedProfiles::Sdp); in new()
|
D | gatt.rs | 2 use crate::btif::{ptr_to_vec, BluetoothInterface, BtStatus, RawAddress, SupportedProfiles, Uuid}; 1737 let r = intf.get_profile_interface(SupportedProfiles::Gatt); in new()
|