Home
last modified time | relevance | path

Searched refs:is_low_latency (Results 1 – 16 of 16) sorted by relevance

/packages/modules/Bluetooth/system/audio_hal_interface/aidl/
Dle_audio_software_aidl.h76 BluetoothAudioCtrlAck StartRequest(bool is_low_latency);
82 void SetLowLatency(bool is_low_latency);
132 BluetoothAudioCtrlAck StartRequest(bool is_low_latency) override;
138 void SetLowLatency(bool is_low_latency) override;
187 BluetoothAudioCtrlAck StartRequest(bool is_low_latency) override;
193 void SetLowLatency(bool is_low_latency) override;
Dbluetooth_audio_port_impl.cc35 ndk::ScopedAStatus BluetoothAudioPortImpl::startStream(bool is_low_latency) { in startStream() argument
37 BluetoothAudioCtrlAck ack = transport_instance_->StartRequest(is_low_latency); in startStream()
138 bool is_low_latency = latency_mode == LatencyMode::LOW_LATENCY ? true : false; in setLatencyMode() local
139 invoke_switch_buffer_size_cb(is_low_latency); in setLatencyMode()
140 transport_instance_->SetLowLatency(is_low_latency); in setLatencyMode()
Dle_audio_software_aidl.cc71 BluetoothAudioCtrlAck LeAudioTransport::StartRequest(bool is_low_latency) { in StartRequest() argument
121 void LeAudioTransport::SetLowLatency(bool is_low_latency) {} in SetLowLatency() argument
267 BluetoothAudioCtrlAck LeAudioSinkTransport::StartRequest(bool is_low_latency) { in StartRequest() argument
268 return transport_->StartRequest(is_low_latency); in StartRequest()
277 void LeAudioSinkTransport::SetLowLatency(bool is_low_latency) { in SetLowLatency() argument
278 transport_->SetLowLatency(is_low_latency); in SetLowLatency()
357 bool is_low_latency) { in StartRequest() argument
358 return transport_->StartRequest(is_low_latency); in StartRequest()
367 void LeAudioSourceTransport::SetLowLatency(bool is_low_latency) { in SetLowLatency() argument
368 transport_->SetLowLatency(is_low_latency); in SetLowLatency()
Da2dp_transport.h36 BluetoothAudioCtrlAck StartRequest(bool is_low_latency) override;
42 void SetLowLatency(bool is_low_latency) override;
Da2dp_encoding_aidl.cc67 BluetoothAudioCtrlAck A2dpTransport::StartRequest(bool is_low_latency) { in StartRequest() argument
89 invoke_switch_codec_cb(is_low_latency); in StartRequest()
96 btif_av_stream_start_with_latency(is_low_latency); in StartRequest()
143 void A2dpTransport::SetLowLatency(bool is_low_latency) { in SetLowLatency() argument
144 btif_av_set_low_latency(is_low_latency); in SetLowLatency()
Dtransport_instance.h68 virtual BluetoothAudioCtrlAck StartRequest(bool is_low_latency) = 0;
74 virtual void SetLowLatency(bool is_low_latency) = 0;
Dhearing_aid_software_encoding_aidl.cc49 BluetoothAudioCtrlAck StartRequest(bool is_low_latency) override { in StartRequest() argument
77 void SetLowLatency(bool is_low_latency) override {} in SetLowLatency() argument
Dbluetooth_audio_port_impl.h40 ndk::ScopedAStatus startStream(bool is_low_latency) override;
/packages/modules/Bluetooth/system/bta/av/
Dbta_av_api.cc630 void BTA_AvSetLatency(tBTA_AV_HNDL handle, bool is_low_latency) { in BTA_AvSetLatency() argument
633 handle, is_low_latency ? "true" : "false"); in BTA_AvSetLatency()
639 p_buf->is_low_latency = is_low_latency; in BTA_AvSetLatency()
Dbta_av_int.h271 bool is_low_latency; member
Dbta_av_act.cc1383 tL2CAP_LATENCY latency = p_data->api_set_latency.is_low_latency in bta_av_api_set_latency()
/packages/modules/Bluetooth/system/btif/include/
Dbtif_av.h241 void btif_av_set_low_latency(bool is_low_latency);
/packages/modules/Bluetooth/system/test/mock/
Dmock_bta_av_api.cc105 void BTA_AvSetLatency(tBTA_AV_HNDL handle, bool is_low_latency) { in BTA_AvSetLatency() argument
/packages/modules/Bluetooth/system/btif/src/
Dbtif_av.cc92 bool is_low_latency; member
2171 p_set_latency_req->is_low_latency ? "true" : "false"); in ProcessEvent()
2173 BTA_AvSetLatency(peer_.BtaHandle(), p_set_latency_req->is_low_latency); in ProcessEvent()
2394 p_set_latency_req->is_low_latency ? "true" : "false"); in ProcessEvent()
2396 BTA_AvSetLatency(peer_.BtaHandle(), p_set_latency_req->is_low_latency); in ProcessEvent()
3697 void btif_av_set_low_latency(bool is_low_latency) { in btif_av_set_low_latency() argument
3698 LOG_INFO("is_low_latency: %s", is_low_latency ? "true" : "false"); in btif_av_set_low_latency()
3701 set_latency_req.is_low_latency = is_low_latency; in btif_av_set_low_latency()
/packages/modules/Bluetooth/system/bta/include/
Dbta_av_api.h687 void BTA_AvSetLatency(tBTA_AV_HNDL handle, bool is_low_latency);
/packages/modules/Bluetooth/system/stack/l2cap/
Dl2c_int.h510 bool is_low_latency() const { return acl_latency == L2CAP_LATENCY_LOW; } in is_low_latency() function