/aosp14/frameworks/base/media/tests/EffectsTest/src/com/android/effectstest/ |
H A D | EffectsTest.java | 158 public String effectUuidToString(UUID effectType) { in effectUuidToString() argument 159 if (effectType.equals(AudioEffect.EFFECT_TYPE_VIRTUALIZER)) { in effectUuidToString() 161 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_ENV_REVERB)){ in effectUuidToString() 163 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_PRESET_REVERB)){ in effectUuidToString() 165 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_EQUALIZER)){ in effectUuidToString() 167 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_BASS_BOOST)){ in effectUuidToString() 169 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_AGC)){ in effectUuidToString() 171 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_AEC)){ in effectUuidToString() 173 } else if (effectType.equals(AudioEffect.EFFECT_TYPE_NS)){ in effectUuidToString() 177 return effectType.toString(); in effectUuidToString()
|
/aosp14/frameworks/base/core/java/android/companion/virtual/ |
H A D | IVirtualDeviceSoundEffectListener.aidl | 33 void onPlaySoundEffect(int effectType); in onPlaySoundEffect() argument
|
H A D | IVirtualDeviceManager.aidl | 106 void playSoundEffect(int deviceId, int effectType); in playSoundEffect() argument
|
H A D | VirtualDeviceManager.java | 319 public void playSoundEffect(int deviceId, @AudioManager.SystemSoundEffect int effectType) { in playSoundEffect() argument 325 mService.playSoundEffect(deviceId, effectType); in playSoundEffect() 843 void onPlaySoundEffect(@AudioManager.SystemSoundEffect int effectType); in onPlaySoundEffect() argument
|
H A D | VirtualDeviceInternal.java | 454 public void onPlaySoundEffect(@AudioManager.SystemSoundEffect int effectType) { in onPlaySoundEffect() argument 455 mExecutor.execute(() -> mSoundEffectListener.onPlaySoundEffect(effectType)); in onPlaySoundEffect()
|
/aosp14/frameworks/base/services/core/jni/ |
H A D | com_android_server_vibrator_VibratorController.cpp | 273 aidl::Effect effectType = static_cast<aidl::Effect>(effect); in vibratorPerformEffect() local 276 auto performEffectFn = [effectType, effectStrength, &callback](vibrator::HalWrapper* hal) { in vibratorPerformEffect() 277 return hal->performEffect(effectType, effectStrength, callback); in vibratorPerformEffect()
|
/aosp14/frameworks/base/media/java/android/media/ |
H A D | AudioManager.java | 3985 public void playSoundEffect(@SystemSoundEffect int effectType) { in playSoundEffect() argument 3986 playSoundEffect(effectType, UserHandle.USER_CURRENT); in playSoundEffect() 3997 public void playSoundEffect(@SystemSoundEffect int effectType, int userId) { in playSoundEffect() argument 3998 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) { in playSoundEffect() 4002 if (delegateSoundEffectToVdm(effectType)) { in playSoundEffect() 4008 service.playSoundEffect(effectType, userId); in playSoundEffect() 4024 if (effectType < 0 || effectType >= NUM_SOUND_EFFECTS) { in playSoundEffect() 4028 if (delegateSoundEffectToVdm(effectType)) { in playSoundEffect() 4034 service.playSoundEffectVolume(effectType, volume); in playSoundEffect() 4049 private boolean delegateSoundEffectToVdm(@SystemSoundEffect int effectType) { in delegateSoundEffectToVdm() argument [all …]
|
H A D | IAudioService.aidl | 206 oneway void playSoundEffect(int effectType, int userId); in playSoundEffect() argument 208 oneway void playSoundEffectVolume(int effectType, float volume); in playSoundEffectVolume() argument
|
/aosp14/frameworks/base/services/companion/java/com/android/server/companion/virtual/ |
H A D | VirtualDeviceManagerService.java | 459 public void playSoundEffect(int deviceId, int effectType) { in playSoundEffect() argument 466 virtualDevice.playSoundEffect(effectType); in playSoundEffect()
|
H A D | VirtualDeviceImpl.java | 1102 void playSoundEffect(int effectType) { 1104 mSoundEffectListener.onPlaySoundEffect(effectType);
|
/aosp14/frameworks/base/services/core/java/com/android/server/audio/ |
H A D | AudioService.java | 6158 public void playSoundEffect(int effectType, int userId) { in playSoundEffect() argument 6160 playSoundEffectVolume(effectType, -1.0f); in playSoundEffect() 6173 public void playSoundEffectVolume(int effectType, float volume) { in playSoundEffectVolume() argument 6179 if (effectType >= AudioManager.NUM_SOUND_EFFECTS || effectType < 0) { in playSoundEffectVolume() 6180 Log.w(TAG, "AudioService effectType value " + effectType + " out of range"); in playSoundEffectVolume() 6185 effectType, (int) (volume * 1000), null, 0); in playSoundEffectVolume()
|
/aosp14/frameworks/base/tools/aapt2/integration-tests/CommandTests/ |
H A D | android-33.jar | AndroidManifest.xml
META-INF/
META-INF/MANIFEST.MF
NOTICES/
NOTICES/libcore ... |