Home
last modified time | relevance | path

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

/packages/modules/Bluetooth/system/gd/rust/topshim/src/profiles/
Davrcp.rs33 type AvrcpIntf; typedef
35 unsafe fn GetAvrcpProfile(btif: *const u8) -> UniquePtr<AvrcpIntf>; in GetAvrcpProfile()
37 fn init(self: Pin<&mut AvrcpIntf>); in init()
38 fn cleanup(self: Pin<&mut AvrcpIntf>); in cleanup()
39 fn connect(self: Pin<&mut AvrcpIntf>, bt_addr: RawAddress) -> u32; in connect()
40 fn disconnect(self: Pin<&mut AvrcpIntf>, bt_addr: RawAddress) -> u32; in disconnect()
41 fn set_volume(self: Pin<&mut AvrcpIntf>, volume: i8); in set_volume()
42 fn set_playback_status(self: Pin<&mut AvrcpIntf>, status: &String); in set_playback_status()
43 fn set_position(self: Pin<&mut AvrcpIntf>, position_us: i64); in set_position()
45 self: Pin<&mut AvrcpIntf>, in set_metadata()
[all …]
/packages/modules/Bluetooth/system/gd/rust/topshim/btav/
Dbtav_shim.h64 AvrcpIntf(bluetooth::avrcp::ServiceInterface* intf) : intf_(intf) {} in AvrcpIntf() function