HomeSort by relevance Sort by last modified time
    Searched refs:maxVolume (Results 1 - 25 of 67) sorted by null

1 2 3

  /frameworks/base/media/java/android/media/session/
ParcelableVolumeInfo.java 32 public int maxVolume;
36 int maxVolume,
41 this.maxVolume = maxVolume;
48 maxVolume = from.readInt();
62 dest.writeInt(maxVolume);
  /frameworks/support/media-compat/java/android/support/v4/media/session/
ParcelableVolumeInfo.java 29 public int maxVolume;
33 int maxVolume,
38 this.maxVolume = maxVolume;
45 maxVolume = from.readInt();
59 dest.writeInt(maxVolume);
  /frameworks/support/media-compat/api21/android/support/v4/media/
VolumeProviderCompatApi21.java 22 public static Object createVolumeProvider(int volumeControl, int maxVolume, int currentVolume,
24 return new VolumeProvider(volumeControl, maxVolume, currentVolume) {
  /frameworks/base/media/java/android/media/
VolumeProvider.java 73 * @param maxVolume The maximum allowed volume.
76 public VolumeProvider(@ControlType int volumeControl, int maxVolume, int currentVolume) {
78 mMaxVolume = maxVolume;
  /external/webrtc/webrtc/modules/audio_device/linux/
audio_mixer_manager_alsa_linux.h 31 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const;
47 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const;
audio_mixer_manager_pulse_linux.h 39 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const;
57 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const;
  /external/webrtc/webrtc/modules/audio_device/mac/
audio_mixer_manager_mac.h 28 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const;
46 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const;
  /frameworks/support/media-compat/java/android/support/v4/media/
VolumeProviderCompat.java 78 * @param maxVolume The maximum allowed volume.
81 public VolumeProviderCompat(@ControlType int volumeControl, int maxVolume, int currentVolume) {
83 mMaxVolume = maxVolume;
  /frameworks/base/services/core/java/com/android/server/hdmi/
VolumeControlAction.java 166 int maxVolume = audioManager.getStreamMaxVolume(AudioManager.STREAM_MUSIC);
167 return currentVolume == maxVolume;
  /external/webrtc/webrtc/modules/audio_device/android/
opensles_player.h 79 int MaxSpeakerVolume(uint32_t& maxVolume) const;
audio_device_template.h 256 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const override {
257 return output_.MaxSpeakerVolume(maxVolume);
285 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const override {
  /external/webrtc/webrtc/modules/audio_device/test/
func_test_manager.cc 228 uint32_t maxVolume(0);
232 EXPECT_EQ(0, _audioDevice->MaxMicrophoneVolume(&maxVolume));
241 int stepScale = (int) ((maxVolume - minVolume) / (stepSize * 10));
243 if (volume > maxVolume)
254 uint32_t maxVolume(0);
257 EXPECT_EQ(0, _audioDevice->MaxMicrophoneVolume(&maxVolume));
266 int stepScale = (int) ((maxVolume - minVolume) / (stepSize * 10));
268 if (newMicLevel > maxVolume)
504 uint32_t maxVolume(0);
508 EXPECT_EQ(0, _audioDevice->MaxSpeakerVolume(&maxVolume));
    [all...]
audio_device_test_api.cc 881 uint32_t maxVolume(0);
891 EXPECT_EQ(-1, audio_device_->MaxSpeakerVolume(&maxVolume));
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
AudioManagerTest.java 482 int maxVolume = mAudioManager.getStreamMaxVolume(streams[i]);
487 assertTrue(String.format("minVolume(%d) must be < maxVolume(%d)", minVolume,
488 maxVolume),
489 minVolume < maxVolume);
493 assertEquals(maxVolume, mAudioManager.getStreamVolume(streams[i]));
511 maxVolume = maxMusicVolume = curvol;
513 mAudioManager.setStreamVolume(streams[i], maxVolume, 0);
515 assertEquals(maxVolume, mAudioManager.getStreamVolume(streams[i]));
519 assertEquals(maxVolume - volumeDelta, mAudioManager.getStreamVolume(streams[i]));
522 mAudioManager.setStreamVolume(streams[i], maxVolume, 0)
    [all...]
RingtoneTest.java 53 int maxVolume = mAudioManager.getStreamMaxVolume(AudioManager.STREAM_RING);
59 mAudioManager.setStreamVolume(AudioManager.STREAM_RING, maxVolume / 2,
  /external/webrtc/webrtc/modules/audio_device/
audio_device_generic.h 84 virtual int32_t MaxSpeakerVolume(uint32_t& maxVolume) const = 0;
92 virtual int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const = 0;
audio_device_impl.h 120 int32_t MaxSpeakerVolume(uint32_t* maxVolume) const override;
128 int32_t MaxMicrophoneVolume(uint32_t* maxVolume) const override;
  /external/webrtc/webrtc/modules/audio_device/dummy/
audio_device_dummy.cc 110 int32_t AudioDeviceDummy::MaxSpeakerVolume(uint32_t& maxVolume) const {
132 int32_t AudioDeviceDummy::MaxMicrophoneVolume(uint32_t& maxVolume) const {
audio_device_dummy.h 87 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const override;
95 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const override;
file_audio_device.h 107 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const override;
115 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const override;
  /external/webrtc/webrtc/modules/audio_device/include/
audio_device.h 121 virtual int32_t MaxSpeakerVolume(uint32_t* maxVolume) const = 0;
129 virtual int32_t MaxMicrophoneVolume(uint32_t* maxVolume) const = 0;
fake_audio_device.h 82 virtual int32_t MaxSpeakerVolume(uint32_t* maxVolume) const { return 0; }
88 virtual int32_t MaxMicrophoneVolume(uint32_t* maxVolume) const { return 0; }
  /external/webrtc/webrtc/modules/audio_device/win/
audio_mixer_manager_win.h 58 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const;
74 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const;
  /external/webrtc/webrtc/modules/audio_device/ios/
audio_device_not_implemented_ios.mm 80 int32_t AudioDeviceIOS::MaxSpeakerVolume(uint32_t& maxVolume) const {
230 int32_t AudioDeviceIOS::MaxMicrophoneVolume(uint32_t& maxVolume) const {
audio_device_ios.h 117 int32_t MaxSpeakerVolume(uint32_t& maxVolume) const override;
123 int32_t MaxMicrophoneVolume(uint32_t& maxVolume) const override;

Completed in 532 milliseconds

1 2 3