/system/bt/btif/src/ |
D | btif_vc.cc | 57 void OnVolumeStateChanged(const RawAddress& address, uint8_t volume, in OnVolumeStateChanged() argument 59 DVLOG(2) << __func__ << " address: " << address << "volume: " << volume in OnVolumeStateChanged() 63 Unretained(callbacks_), address, volume, mute)); in OnVolumeStateChanged() 66 void OnGroupVolumeStateChanged(int group_id, uint8_t volume, in OnGroupVolumeStateChanged() argument 68 DVLOG(2) << __func__ << "group_id: " << group_id << "volume: " << volume in OnGroupVolumeStateChanged() 72 Unretained(callbacks_), group_id, volume, mute)); in OnGroupVolumeStateChanged() 90 uint8_t volume) override { in SetVolume() argument 91 DVLOG(2) << __func__ << " volume: " << volume; in SetVolume() 94 std::move(addr_or_group_id), volume)); in SetVolume()
|
D | btif_hearing_aid.cc | 107 void SetVolume(int8_t volume) override { in SetVolume() argument 108 DVLOG(2) << __func__ << " volume: " << +volume; in SetVolume() 110 Unretained(HearingAid::Get()), volume)); in SetVolume()
|
/system/bt/include/hardware/ |
D | bt_vc.h | 43 virtual void OnVolumeStateChanged(const RawAddress& address, uint8_t volume, 47 virtual void OnGroupVolumeStateChanged(int group_id, uint8_t volume, 72 uint8_t volume) = 0;
|
D | bt_hearing_aid.h | 66 virtual void SetVolume(int8_t volume) = 0;
|
/system/bt/packet/avrcp/ |
D | set_absolute_volume.h | 35 uint8_t volume); 44 SetAbsoluteVolumeRequestBuilder(uint8_t volume) in SetAbsoluteVolumeRequestBuilder() argument 47 volume_(volume){}; in SetAbsoluteVolumeRequestBuilder()
|
D | set_absolute_volume.cc | 23 SetAbsoluteVolumeRequestBuilder::MakeBuilder(uint8_t volume) { in MakeBuilder() argument 25 new SetAbsoluteVolumeRequestBuilder(volume & 0x7F)); in MakeBuilder()
|
/system/bt/audio_bluetooth_hw/ |
D | audio_bluetooth_hw.cc | 65 static int adev_set_voice_volume(struct audio_hw_device* dev, float volume) { in adev_set_voice_volume() argument 66 LOG(VERBOSE) << __func__ << ": volume=" << volume; in adev_set_voice_volume() 70 static int adev_set_master_volume(struct audio_hw_device* dev, float volume) { in adev_set_master_volume() argument 71 LOG(VERBOSE) << __func__ << ": volume=" << volume; in adev_set_master_volume() 75 static int adev_get_master_volume(struct audio_hw_device* dev, float* volume) { in adev_get_master_volume() argument
|
/system/bt/binder/android/bluetooth/ |
D | IBluetoothVolumeControl.aidl | 46 void setVolume(in BluetoothDevice device, int volume, in AttributionSource attributionSource); in setVolume() argument 48 void setVolumeGroup(int group_id, int volume, in AttributionSource attributionSource); in setVolumeGroup() argument
|
D | IBluetoothAvrcpTarget.aidl | 29 void sendVolumeChanged(in int volume); in sendVolumeChanged() argument
|
/system/vold/model/ |
D | VolumeBase.cpp | 164 void VolumeBase::addVolume(const std::shared_ptr<VolumeBase>& volume) { in addVolume() argument 165 mVolumes.push_back(volume); in addVolume() 168 void VolumeBase::removeVolume(const std::shared_ptr<VolumeBase>& volume) { in removeVolume() argument 169 mVolumes.remove(volume); in removeVolume()
|
D | VolumeBase.h | 100 void addVolume(const std::shared_ptr<VolumeBase>& volume); 101 void removeVolume(const std::shared_ptr<VolumeBase>& volume);
|
/system/bt/stack/avrc/ |
D | avrc_pars_tg.cc | 69 BE_STREAM_TO_UINT8(p_result->volume.volume, p); in avrc_ctrl_pars_vendor_cmd() 70 p_result->volume.volume = AVRC_MAX_VOLUME & p_result->volume.volume; in avrc_ctrl_pars_vendor_cmd() 338 p_result->volume.volume = *p++; in avrc_pars_vendor_cmd()
|
/system/bt/bta/vc/ |
D | vc.cc | 273 STREAM_TO_UINT8(device->volume, pp); in OnVolumeControlStateChanged() 278 LOG(INFO) << __func__ << "volume " << loghex(device->volume) << "mute" in OnVolumeControlStateChanged() 284 callbacks_->OnVolumeStateChanged(device->address, device->volume, in OnVolumeControlStateChanged() 387 uint8_t volume) override { in SetVolume() argument 388 LOG(INFO) << __func__ << "vol: " << +volume; in SetVolume() 393 std::vector<uint8_t> arg({volume}); in SetVolume() 430 callbacks_->OnVolumeStateChanged(device->address, device->volume, in verify_device_ready()
|
D | devices.h | 47 uint8_t volume; variable 69 volume(0), in VolumeControlDevice()
|
/system/bt/service/ |
D | avrcp_target.h | 63 virtual void OnVolumeChange(const std::string& addr, int32_t volume, 110 bool SetVolume(int volume); 140 void VolumeChangeCallback(uint8_t volume, uint8_t ctype,
|
/system/bt/bta/include/ |
D | bta_vc_api.h | 39 uint8_t volume) = 0;
|
/system/vold/ |
D | vdc.rc | 1 # One shot invocation to deal with encrypted volume.
|
D | VolumeManager.cpp | 1023 auto volume = findVolumeWithFilter(filter_fn); in setupAppDir() local 1024 if (volume == nullptr) { in setupAppDir() 1033 volume->getInternalPath() + path.substr(volume->getPath().length()); in setupAppDir() 1035 const std::string volumeRoot = volume->getRootPath(); // eg /data/media/0 in setupAppDir() 1049 if (volume->getType() == VolumeBase::Type::kPublic) { in setupAppDir() 1093 auto volume = findVolumeWithFilter(filter_fn); in createObb() local 1094 if (volume == nullptr) { in createObb() 1099 volume->getInternalPath() + sourcePath.substr(volume->getPath().length()); in createObb()
|
/system/bt/include/hardware/avrcp/ |
D | avrcp.h | 153 using VolumeChangedCb = base::Callback<void(int8_t volume)>; 169 virtual void SetVolume(int8_t volume) = 0;
|
/system/bt/service/common/android/bluetooth/ |
D | IBluetoothAvrcpTargetCallback.aidl | 33 void OnVolumeChange(String addr, int volume, int ctype); in OnVolumeChange() argument
|
D | IBluetoothAvrcpTarget.aidl | 57 boolean SetVolume(int volume); in SetVolume() argument
|
/system/media/audio_utils/ |
D | Balance.cpp | 142 for (float volume : mVolumes) { in toString() local 143 ss << " " << volume; in toString()
|
/system/core/rootdir/ |
D | init.zygote32.rc | 8 onrestart exec_background - system system -- /system/bin/vdc volume abort_fuse
|
D | init.zygote64.rc | 8 onrestart exec_background - system system -- /system/bin/vdc volume abort_fuse
|
/system/bt/service/ipc/binder/ |
D | bluetooth_avrcp_target_binder_server.cc | 209 Status BluetoothAvrcpTargetBinderServer::SetVolume(int32_t volume, in SetVolume() argument 212 TRY_RET_FUNC(avrcp_target->SetVolume(volume)); in SetVolume() 296 int32_t volume, in OnVolumeChange() argument 300 cb->OnVolumeChange(String16(addr.data(), addr.size()), volume, ctype); in OnVolumeChange()
|