Home
last modified time | relevance | path

Searched refs:SetVolume (Results 1 – 24 of 24) sorted by relevance

/packages/modules/Bluetooth/system/bta/vc/
Dvc_test.cc1291 VolumeControl::Get()->SetVolume(test_address, 15); in TEST_F()
1635 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
1671 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
1688 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
1694 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
1698 VolumeControl::Get()->SetVolume(test_address, 0x20); in TEST_F()
1727 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
1737 VolumeControl::Get()->SetVolume(test_address, 0x11); in TEST_F()
1738 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
1777 VolumeControl::Get()->SetVolume(test_address, 0x10); in TEST_F()
[all …]
Dvc.cc1223 void SetVolume(std::variant<RawAddress, int> addr_or_group_id, uint8_t volume) override { in SetVolume() function in __anon0b42fadf0111::VolumeControlImpl
/packages/modules/Bluetooth/system/btif/src/
Dbtif_hearing_aid.cc89 void SetVolume(int8_t volume) override { in SetVolume() function in __anon4e9b89120211::HearingAidInterfaceImpl
90 do_in_main_thread(Bind(&HearingAid::SetVolume, volume)); in SetVolume()
Dbtif_vc.cc177 void SetVolume(std::variant<RawAddress, int> addr_or_group_id, uint8_t volume) override { in SetVolume() function in __anonfc77ebc00111::VolumeControlInterfaceImpl
185 do_in_main_thread(Bind(&VolumeControl::SetVolume, Unretained(VolumeControl::Get()), in SetVolume()
/packages/modules/Bluetooth/system/test/mock/
Dmock_bta_hearing_aid.cc60 void HearingAid::SetVolume(int8_t /* volume */) { inc_func_call_count(__func__); } in SetVolume() function in HearingAid
/packages/modules/Bluetooth/system/include/hardware/
Dbt_hearing_aid.h63 virtual void SetVolume(int8_t volume) = 0;
Dbt_vc.h119 virtual void SetVolume(std::variant<RawAddress, int> addr_or_group_id, uint8_t volume) = 0;
/packages/modules/Bluetooth/system/bta/include/
Dbta_vc_api.h45 virtual void SetVolume(std::variant<RawAddress, int> addr_or_group_id, uint8_t volume) = 0;
Dbta_hearing_aid_api.h249 static void SetVolume(int8_t volume);
/packages/modules/Bluetooth/system/include/hardware/avrcp/
Davrcp.h172 virtual void SetVolume(int8_t volume) = 0;
/packages/modules/Bluetooth/android/app/jni/
Dcom_android_bluetooth_hearing_aid.cpp216 sHearingAidInterface->SetVolume(volume); in setVolumeNative()
Dcom_android_bluetooth_vc.cpp532 sVolumeControlInterface->SetVolume(*tmpraw, volume); in setVolumeNative()
543 sVolumeControlInterface->SetVolume(group_id, volume); in setGroupVolumeNative()
Dcom_android_bluetooth_avrcp_target.cpp201 void SetVolume(int8_t volume) override { setVolume(volume); } in SetVolume() function in android::VolumeInterfaceImpl
/packages/modules/Bluetooth/system/profile/avrcp/tests/
Davrcp_test_helper.h62 MOCK_METHOD1(SetVolume, void(int8_t));
Davrcp_device_test.cc1179 EXPECT_CALL(vol_interface, SetVolume(0x47)).Times(1); in TEST_F()
1212 EXPECT_CALL(vol_interface, SetVolume(0x47)).Times(0); in TEST_F()
1247 test_device->SetVolume(vol); in TEST_F()
1248 test_device->SetVolume(vol); in TEST_F()
1260 test_device->SetVolume(vol); in TEST_F()
1262 test_device->SetVolume(vol); in TEST_F()
/packages/modules/Bluetooth/floss/pandora/floss/
Dmedia_client.py395 self.proxy().SetVolume(volume)
/packages/modules/Bluetooth/system/profile/avrcp/
Ddevice.h287 virtual void SetVolume(int8_t volume);
Ddevice.cc536 GetAddress(), base::Bind(&Device::SetVolume, weak_ptr_factory_.GetWeakPtr())); in HandleVolumeChanged()
551 volume_interface_->SetVolume(volume_); in HandleVolumeChanged()
554 void Device::SetVolume(int8_t volume) { in SetVolume() function in bluetooth::avrcp::Device
/packages/modules/Bluetooth/system/gd/rust/topshim/vc/
Dvc_shim.cc217 return intf_->SetVolume(group_id, volume); in set_volume()
/packages/modules/Bluetooth/system/btif/avrcp/
Davrcp_service.cc323 void SetVolume(int8_t volume) override { in SetVolume() function in bluetooth::avrcp::VolumeInterfaceWrapper
324 do_in_jni_thread(base::Bind(&VolumeInterface::SetVolume, base::Unretained(wrapped_), volume)); in SetVolume()
/packages/modules/Bluetooth/system/gd/rust/topshim/btav/
Dbtav_shim.cc170 void SetVolume(int8_t volume) override { in SetVolume() function in bluetooth::avrcp::VolumeInterfaceImpl
/packages/modules/Bluetooth/system/profile/avrcp/tests/avrcp_device_fuzz/
Davrcp_device_fuzz.cc177 void SetVolume(int8_t /* volume */) { return; } in SetVolume() function in bluetooth::avrcp::FakeVolumeInterface
/packages/modules/Bluetooth/system/bta/hearing_aid/
Dhearing_aid.cc1889 void SetVolume(int8_t volume) { in SetVolume() function in __anonad2ad9430111::HearingAidImpl
2179 void HearingAid::SetVolume(int8_t volume) { in SetVolume() function in HearingAid
2184 instance->SetVolume(volume); in SetVolume()
/packages/modules/Bluetooth/android/pandora/test/
Dasha_test.py851 …_, volume_result = await asyncio.gather(dut_asha.SetVolume(1), asyncio.wait_for(volume_future, tim…