Searched defs:AvrcpIntf (Results 1 – 2 of 2) sorted by relevance
32 type AvrcpIntf; typedef34 unsafe fn GetAvrcpProfile(btif: *const u8) -> UniquePtr<AvrcpIntf>; in GetAvrcpProfile()36 fn init(self: Pin<&mut AvrcpIntf>); in init()37 fn cleanup(self: Pin<&mut AvrcpIntf>); in cleanup()38 fn connect(self: Pin<&mut AvrcpIntf>, bt_addr: RawAddress) -> u32; in connect()39 fn disconnect(self: Pin<&mut AvrcpIntf>, bt_addr: RawAddress) -> u32; in disconnect()40 fn set_volume(self: Pin<&mut AvrcpIntf>, volume: i8); in set_volume()41 fn set_playback_status(self: Pin<&mut AvrcpIntf>, status: &String); in set_playback_status()42 fn set_position(self: Pin<&mut AvrcpIntf>, position_us: i64); in set_position()44 self: Pin<&mut AvrcpIntf>, in set_metadata()[all …]
64 AvrcpIntf(bluetooth::avrcp::ServiceInterface* intf) : intf_(intf) {} in AvrcpIntf() function