Searched refs:LeAudioClientIntf (Results 1 – 3 of 3) sorted by relevance
/packages/modules/Bluetooth/system/gd/rust/topshim/le_audio/ |
D | le_audio_shim.cc | 36 static LeAudioClientIntf* g_lea_client_if; 374 void LeAudioClientIntf::init(/* in init() 380 void LeAudioClientIntf::connect(RawAddress addr) { in connect() 384 void LeAudioClientIntf::disconnect(RawAddress addr) { in disconnect() 388 void LeAudioClientIntf::set_enable_state(RawAddress addr, bool enabled) { in set_enable_state() 392 void LeAudioClientIntf::cleanup() { in cleanup() 396 void LeAudioClientIntf::remove_device(RawAddress addr) { in remove_device() 400 void LeAudioClientIntf::group_add_node(int group_id, RawAddress addr) { in group_add_node() 404 void LeAudioClientIntf::group_remove_node(int group_id, RawAddress addr) { in group_remove_node() 408 void LeAudioClientIntf::group_set_active(int group_id) { in group_set_active() [all …]
|
D | le_audio_shim.h | 37 class LeAudioClientIntf { 39 LeAudioClientIntf(le_audio::LeAudioClientInterface* intf) : intf_(intf){}; in LeAudioClientIntf() function 80 std::unique_ptr<LeAudioClientIntf> GetLeAudioClientProfile(const unsigned char* btif);
|
/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/ |
D | le_audio.rs | 135 type LeAudioClientIntf; typedef 137 unsafe fn GetLeAudioClientProfile(btif: *const u8) -> UniquePtr<LeAudioClientIntf>; in GetLeAudioClientProfile() argument 139 fn init(self: Pin<&mut LeAudioClientIntf>); in init() argument 140 fn connect(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress); in connect() argument 141 fn disconnect(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress); in disconnect() argument 142 fn set_enable_state(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress, enabled: bool); in set_enable_state() argument 143 fn cleanup(self: Pin<&mut LeAudioClientIntf>); in cleanup() argument 144 fn remove_device(self: Pin<&mut LeAudioClientIntf>, addr: RawAddress); in remove_device() argument 145 fn group_add_node(self: Pin<&mut LeAudioClientIntf>, group_id: i32, addr: RawAddress); in group_add_node() argument 146 fn group_remove_node(self: Pin<&mut LeAudioClientIntf>, group_id: i32, addr: RawAddress); in group_remove_node() argument [all …]
|