HomeSort by relevance Sort by last modified time
    Searched defs:volume (Results 26 - 50 of 255) sorted by null

12 3 4 5 6 7 8 91011

  /frameworks/base/packages/SystemUI/tests/src/com/android/systemui/volume/
VolumeDialogControllerImplTest.java 17 package com.android.systemui.volume;
VolumeDialogImplTest.java 17 package com.android.systemui.volume;
24 import static com.android.systemui.volume.Events.DISMISS_REASON_UNKNOWN;
25 import static com.android.systemui.volume.Events.SHOW_REASON_UNKNOWN;
26 import static com.android.systemui.volume.VolumeDialogControllerImpl.STREAMS;
  /frameworks/base/services/core/java/com/android/server/hdmi/
SystemAudioStatusAction.java 28 * Action to update audio status (volume or mute) of audio amplifier
96 int volume = HdmiUtils.getAudioStatusVolume(cmd); local
97 tv().setAudioStatus(mute, volume);
HdmiUtils.java 166 * Parse the <Report Audio Status> message and extract the volume
169 * @return device's volume. Constants.UNKNOWN_VOLUME in case it is out of range
173 int volume = params[0] & 0x7F; local
174 if (volume < 0x00 || 0x64 < volume) {
175 volume = Constants.UNKNOWN_VOLUME;
177 return volume;
  /hardware/qcom/audio/legacy/alsa_sound/
AudioStreamOutALSA.cpp 74 float volume; local
77 volume = (left + right) / 2;
78 if (volume < 0.0) {
79 ALOGW("AudioSessionOutALSA::setVolume(%f) under 0.0, assuming 0.0\n", volume);
80 volume = 0.0;
81 } else if (volume > 1.0) {
82 ALOGW("AudioSessionOutALSA::setVolume(%f) over 1.0, assuming 1.0\n", volume);
83 volume = 1.0;
85 vol = lrint((volume * 0x2000)+0.5);
89 ALOGV("setLpaVolume(%f)\n", volume);
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
MediaStore_Audio_Artists_AlbumsTest.java 53 // can not accept any other volume names
54 String volume = "fakeVolume"; local
55 assertNull(mContentResolver.query(MediaStore.Audio.Artists.Albums.getContentUri(volume, 1),
MediaStore_Audio_PlaylistsTest.java 48 // can not accept any other volume names
59 String volume = "fakeVolume"; local
60 assertNull(mContentResolver.query(Playlists.getContentUri(volume), null, null, null,
  /external/adhd/cras/src/common/
cras_iodev_info.h 38 * volume - per-node volume (0-100)
55 uint32_t volume; member in struct:cras_ionode_info
69 * IONODE_ATTR_VOLUME - set the node's output volume.
  /external/adhd/cras/src/server/
cras_hfp_iodev.c 131 size_t volume; local
134 volume = cras_system_get_volume();
136 volume = cras_iodev_adjust_node_volume(iodev->active_node, volume);
138 hfp_event_speaker_gain(hfpio->slc, volume);
262 node->volume = 100;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/
TrackMetaData.java 30 private float volume; field in class:TrackMetaData
116 return volume;
119 public void setVolume(float volume) {
120 this.volume = volume;
  /external/sonic/
Main.java 26 float volume,
41 sonic.setVolume(volume);
66 float volume = 1.0f; local
79 runSonic(stream, line, speed, pitch, rate, volume, emulateChordPitch, quality,
  /external/sonivox/arm-wt-22k/lib_src/
eas_data.h 77 EAS_U8 volume; member in struct:s_eas_stream_tag
81 /* default master volume is -10dB */
  /external/webrtc/talk/media/webrtc/
webrtcvoe.h 103 webrtc::VoEVolumeControl* volume)
111 volume_(volume) {
121 webrtc::VoEVolumeControl* volume() const { return volume_.get(); } function in class:cricket::VoEWrapper
  /external/webrtc/webrtc/tools/agc/
agc_harness.cc 188 VoEVolumeControl* volume = VoEVolumeControl::GetInterface(voe_); local
191 volume->SetOutputVolumePan(channel_, 1, 0);
193 volume->SetOutputVolumePan(channel_, 0, 1);
203 volume->Release();
  /frameworks/av/media/libaudioprocessing/
AudioResamplerFirProcess.h 59 int32_t volumeAdjust(int32_t value, int32_t volume)
61 return 2 * mulRL(0, value, volume); // Note: only use top 16b
66 float volumeAdjust(float value, float volume)
68 return value * volume;
92 inline void volume(TO*& out, TO gain) { function in class:android::Accumulator
94 Accumulator<CHANNELS-1, TO>::volume(out, gain);
108 inline void volume(TO*& out __unused, TO gain __unused) { function in class:android::Accumulator
166 * the negative half FIR dot product, accumulates, and then applies the volume.
217 accum.volume(tmp_out, volumeLR[0]);
290 * @param volumeLR is a pointer to an array of two 32 bit volume values, one per stereo channel
    [all...]
  /frameworks/base/media/java/android/media/
RemoteDisplayState.java 107 public int volume; field in class:RemoteDisplayState.RemoteDisplayInfo
124 volume = other.volume;
135 volume = in.readInt();
156 dest.writeInt(volume);
168 + ", volume=" + volume
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
SafetyWarningDialog.java 17 package com.android.systemui.volume;
Util.java 17 package com.android.systemui.volume;
35 * Static helpers for the volume dialog.
VolumePrefs.java 17 package com.android.systemui.volume;
25 * Configuration for the volume dialog + related policy.
  /frameworks/base/services/tests/servicestests/src/com/android/server/storage/
AppCollectorTest.java 93 VolumeInfo volume = new VolumeInfo("testuuid", 0, null, null); local
94 volume.fsUuid = "testuuid";
95 AppCollector collector = new AppCollector(mContext, volume);
103 VolumeInfo volume = new VolumeInfo("testuuid", 0, null, null); local
104 volume.fsUuid = "testuuid";
105 AppCollector collector = new AppCollector(mContext, volume);
113 VolumeInfo volume = new VolumeInfo("testuuid", 0, null, null); local
114 volume.fsUuid = "testuuid";
115 AppCollector collector = new AppCollector(mContext, volume);
130 VolumeInfo volume = new VolumeInfo("testuuid", 0, null, null) local
151 VolumeInfo volume = new VolumeInfo("testuuid", 0, null, null); local
    [all...]
  /hardware/qcom/audio/hal/
voice.h 62 float volume; member in struct:voice
86 int voice_set_volume(struct audio_device *adev, float volume);
  /packages/apps/Dialer/java/com/android/incallui/ringtone/
InCallTonePlayer.java 91 * tone is played at a high priority volume and through STREAM_VOICE_CALL since it's
109 toneGenerator = toneGeneratorFactory.newInCallToneGenerator(info.stream, info.volume);
145 public final int volume; field in class:InCallTonePlayer.ToneGeneratorInfo
149 public ToneGeneratorInfo(int toneGeneratorType, int volume, int toneLengthMillis, int stream) {
151 this.volume = volume;
163 + ", volume="
164 + volume
  /packages/apps/Settings/src/com/android/settings/
SettingsDumpService.java 141 for (VolumeInfo volume : manager.getVolumes()) {
143 if (volume.isMountedReadable()) {
144 File path = volume.getPath();
148 volObj.put("path", volume.getInternalPath());
149 volObj.put("state", volume.getState());
150 volObj.put("stateDesc", volume.getStateDescription());
151 volObj.put("description", volume.getDescription());
152 obj.put(volume.getId(), volObj);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/deviceinfo/storage/
StorageSummaryDonutPreferenceControllerTest.java 126 final VolumeInfo volume = Mockito.mock(VolumeInfo.class); local
129 when(volume.getPath()).thenReturn(file);
134 mController.updateSizes(svp, volume);
  /packages/services/Car/tests/EmbeddedKitchenSinkApp/src/com/google/android/car/kitchensink/volume/
VolumeAdapter.java 16 package com.google.android.car.kitchensink.volume;
28 import com.google.android.car.kitchensink.volume.VolumeTestFragment.VolumeInfo;

Completed in 450 milliseconds

12 3 4 5 6 7 8 91011