Home
last modified time | relevance | path

Searched refs:session_type (Results 1 – 2 of 2) sorted by relevance

/system/bt/audio_hal_interface/
Da2dp_encoding.cc207 auto session_type = SessionType::UNKNOWN; variable
603 session_type = SessionType::A2DP_HARDWARE_OFFLOAD_DATAPATH; in init()
605 session_type = SessionType::A2DP_SOFTWARE_ENCODING_DATAPATH; in init()
607 a2dp_sink = new A2dpTransport(session_type); in init()
611 …LOG(WARNING) << __func__ << ": BluetoothAudio HAL for A2DP session=" << toString(session_type) << … in init()
636 session_type = SessionType::UNKNOWN; in cleanup()
647 if (session_type == SessionType::A2DP_HARDWARE_OFFLOAD_DATAPATH) { in setup_codec()
654 } else if (session_type == SessionType::A2DP_SOFTWARE_ENCODING_DATAPATH) { in setup_codec()
720 } else if (session_type != SessionType::A2DP_SOFTWARE_ENCODING_DATAPATH) { in read()
721 LOG(ERROR) << __func__ << ": session_type=" << toString(session_type) in read()
Dclient_interface_unittest.cc66 TestTransport(SessionType session_type) in TestTransport() argument
67 : bluetooth::audio::IBluetoothTransportInstance(session_type, {}){}; in TestTransport()