Lines Matching refs:A2dpSource
105 const int A2dpSource::kSingletonInstanceId = 0;
107 A2dpSource::A2dpSource(const Uuid& uuid) : app_identifier_(uuid) { in A2dpSource() function in bluetooth::A2dpSource
111 A2dpSource::~A2dpSource() { in ~A2dpSource()
115 const Uuid& A2dpSource::GetAppIdentifier() const { return app_identifier_; } in GetAppIdentifier()
117 int A2dpSource::GetInstanceId() const { return kSingletonInstanceId; } in GetInstanceId()
119 void A2dpSource::SetDelegate(Delegate* delegate) { in SetDelegate()
124 bool A2dpSource::Enable(const std::vector<A2dpCodecConfig>& codec_priorities) { in Enable()
131 void A2dpSource::Disable() { in Disable()
136 bool A2dpSource::Connect(const std::string& device_address) { in Connect()
144 bool A2dpSource::Disconnect(const std::string& device_address) { in Disconnect()
152 bool A2dpSource::ConfigCodec( in ConfigCodec()
164 void A2dpSource::ConnectionStateCallback(BluetoothAvInterface* iface, in ConnectionStateCallback()
173 void A2dpSource::AudioStateCallback(BluetoothAvInterface* iface, in AudioStateCallback()
182 void A2dpSource::AudioConfigCallback( in AudioConfigCallback()
202 bool A2dpSource::MandatoryCodecPreferredCallback(BluetoothAvInterface* iface, in MandatoryCodecPreferredCallback()
218 auto a2dp_source = base::WrapUnique(new A2dpSource(uuid)); in RegisterInstance()