Home
last modified time | relevance | path

Searched defs:A2dpIntf (Results 1 – 2 of 2) sorted by relevance

/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Da2dp.rs161 type A2dpIntf; typedef
164 unsafe fn GetA2dpProfile(btif: *const u8) -> UniquePtr<A2dpIntf>; in GetA2dpProfile()
167 fn connect(self: &A2dpIntf, bt_addr: RustRawAddress) -> i32; in connect()
168 fn disconnect(self: &A2dpIntf, bt_addr: RustRawAddress) -> i32; in disconnect()
169 fn set_silence_device(self: &A2dpIntf, bt_addr: RustRawAddress, silent: bool) -> i32; in set_silence_device()
170 fn set_active_device(self: &A2dpIntf, bt_addr: RustRawAddress) -> i32; in set_active_device()
172 self: &A2dpIntf, in config_codec()
176 fn set_audio_config(self: &A2dpIntf, config: A2dpCodecConfig) -> bool; in set_audio_config()
179 fn cleanup(self: &A2dpIntf); in cleanup()
/packages/modules/Bluetooth/system/gd/rust/topshim/btav/
Dbtav_shim.h37 A2dpIntf(const btav_source_interface_t* intf) : intf_(intf){}; in A2dpIntf() function