HomeSort by relevance Sort by last modified time
    Searched refs:volume (Results 401 - 425 of 978) sorted by null

<<11121314151617181920>>

  /hardware/qcom/msm8960/kernel-headers/linux/mfd/
msm-adie-codec.h 104 u32 volume);
  /hardware/qcom/msm8x74/kernel-headers/linux/mfd/
msm-adie-codec.h 104 u32 volume);
  /hardware/qcom/msm8x84/kernel-headers/linux/mfd/
msm-adie-codec.h 104 u32 volume);
  /external/chromium_org/chrome/browser/chromeos/audio/
audio_devices_pref_handler_impl.cc 184 double volume = kDefaultOutputVolume; local
185 bool success = it.value().GetAsDouble(&volume);
187 dict_update->SetDouble(it.key(), volume);
  /external/chromium_org/content/renderer/media/
audio_message_filter.cc 36 virtual void SetVolume(double volume) OVERRIDE;
114 void AudioMessageFilter::AudioOutputIPCImpl::SetVolume(double volume) {
116 filter_->Send(new AudioHostMsg_SetVolume(stream_id_, volume));
webrtc_audio_device_impl.cc 362 int32_t WebRtcAudioDeviceImpl::SetMicrophoneVolume(uint32_t volume) {
363 DVLOG(1) << "WebRtcAudioDeviceImpl::SetMicrophoneVolume(" << volume << ")";
372 capturer->SetVolume(volume);
377 int32_t WebRtcAudioDeviceImpl::MicrophoneVolume(uint32_t* volume) const {
386 *volume = static_cast<uint32_t>(capturer->Volume());
  /external/chromium_org/third_party/libjingle/source/talk/sound/
pulseaudiosoundsystem.cc 100 static pa_volume_t CricketVolumeToPulseVolume(int volume) {
101 // PA's volume space goes from 0% at PA_VOLUME_MUTED (value 0) to 100% at
108 volume / SoundSystemInterface::kMaxVolume;
270 virtual bool GetVolume(int *volume) {
275 // Unlike output streams, input streams have no concept of a stream volume,
276 // only a device volume. So we have to retrieve the volume of the device
302 // We now have the volume for each channel. Each channel could have a
303 // different volume if, e.g., the user went and changed the volumes in the
304 // PA UI. To get a single volume for SoundSystemInterface we just take th
    [all...]
  /frameworks/av/services/audiopolicy/
AudioPolicyService.cpp 418 ALOGV("AudioCommandThread() processing set volume stream %d, \
419 volume %f, output %d", data->mStream, data->mVolume, data->mIO);
432 ALOGV("AudioCommandThread() processing set voice volume volume %f",
607 float volume,
615 data->mVolume = volume;
619 ALOGV("AudioCommandThread() adding set volume stream %d, volume %f, output %d",
620 stream, volume, output);
640 status_t AudioPolicyService::AudioCommandThread::voiceVolumeCommand(float volume, int delayMs
    [all...]
  /frameworks/base/core/java/android/preference/
VolumePreference.java 74 // grab focus and key events so that pressing the volume buttons in the
75 // dialog doesn't also show the normal volume adjust toast.
182 public int volume = -1; field in class:VolumePreference.VolumeStore
191 mVolumeStore.volume = source.readInt();
198 dest.writeInt(mVolumeStore.volume);
  /frameworks/base/media/lib/remotedisplay/java/com/android/media/remotedisplay/
RemoteDisplayProvider.java 198 * Called when the system would like to set the volume of a display.
201 * @param volume The desired volume.
203 public void onSetVolume(RemoteDisplay display, int volume) {
207 * Called when the system would like to adjust the volume of a display.
210 * @param delta An increment to add to the current volume, such as +1 or -1.
350 public void setVolume(String id, int volume) {
351 mHandler.obtainMessage(MSG_SET_VOLUME, volume, 0, id).sendToTarget();
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
DemoStatusIcons.java 61 String volume = args.getString("volume"); local
62 if (volume != null) {
63 int iconId = volume.equals("vibrate") ? R.drawable.stat_sys_ringer_vibrate
65 updateSlot("volume", null, iconId);
  /hardware/libhardware/include/hardware/
audio.h 286 * allowing you to directly set the volume as apposed to via the framework.
521 /** set the audio volume of a voice call. Range is between 0.0 and 1.0 */
522 int (*set_voice_volume)(struct audio_hw_device *dev, float volume);
525 * set the audio volume for all audio activities other than voice call.
529 int (*set_master_volume)(struct audio_hw_device *dev, float volume);
532 * Get the current master volume value for the HAL, if the HAL supports
533 * master volume control. AudioFlinger will query this value from the
535 * the initial master volume across all HALs. HALs which do not support
538 int (*get_master_volume)(struct audio_hw_device *dev, float *volume);
  /device/asus/fugu/libaudio/
AudioHardwareOutput.cpp 165 status_t AudioHardwareOutput::setMasterVolume(float volume)
170 mSettings.masterVolume = volume;
179 status_t AudioHardwareOutput::getMasterVolume(float* volume) {
181 if (NULL == volume)
187 *volume = mSettings.masterVolume;
562 DUMP("\tMaster Volume : %0.3f\n", s.masterVolume);
  /external/chromium_org/content/browser/renderer_host/media/
audio_renderer_host.cc 424 void AudioRendererHost::OnSetVolume(int stream_id, double volume) {
433 // Make sure the volume is valid.
434 if (volume < 0 || volume > 1.0)
436 entry->controller()->SetVolume(volume);
437 audio_log_->OnSetVolume(stream_id, volume);
  /external/chromium_org/media/audio/mac/
audio_low_latency_input_mac.cc 355 // Query if any of the master, left or right channels has volume control.
357 // If the volume is settable, the valid volume range is [0.0, 1.0].
362 // Volume control is not available for the audio stream.
366 void AUAudioInputStream::SetVolume(double volume) {
367 DVLOG(1) << "SetVolume(volume=" << volume << ")";
368 DCHECK_GE(volume, 0.0);
369 DCHECK_LE(volume, 1.0);
377 Float32 volume_float32 = static_cast<Float32>(volume);
    [all...]
  /external/chromium_org/media/audio/win/
audio_low_latency_output_win.cc 309 void WASAPIAudioOutputStream::SetVolume(double volume) {
310 VLOG(1) << "SetVolume(volume=" << volume << ")";
311 float volume_float = static_cast<float>(volume);
318 void WASAPIAudioOutputStream::GetVolume(double* volume) {
320 *volume = static_cast<double>(volume_);
  /external/chromium_org/third_party/webrtc/modules/audio_device/test/
audio_device_test_api.cc 306 // Mac and Windows have lower resolution on the volume settings.
762 // set volume without open playout device
902 uint32_t volume(0);
912 EXPECT_EQ(-1, audio_device_->SpeakerVolume(&volume));
    [all...]
  /frameworks/support/v4/jellybean/android/support/v4/media/routing/
MediaRouterJellybean.java 163 public static void requestSetVolume(Object routeObj, int volume) {
164 ((android.media.MediaRouter.RouteInfo)routeObj).requestSetVolume(volume);
215 public static void setVolume(Object routeObj, int volume) {
216 ((android.media.MediaRouter.UserRouteInfo)routeObj).setVolume(volume);
271 public void onVolumeSetRequest(Object routeObj, int volume);
432 int volume) {
433 mCallback.onVolumeSetRequest(route, volume);
  /frameworks/support/v7/mediarouter/jellybean/android/support/v7/media/
MediaRouterJellybean.java 163 public static void requestSetVolume(Object routeObj, int volume) {
164 ((android.media.MediaRouter.RouteInfo)routeObj).requestSetVolume(volume);
215 public static void setVolume(Object routeObj, int volume) {
216 ((android.media.MediaRouter.UserRouteInfo)routeObj).setVolume(volume);
271 public void onVolumeSetRequest(Object routeObj, int volume);
432 int volume) {
433 mCallback.onVolumeSetRequest(route, volume);
  /packages/apps/Settings/src/com/android/settings/deviceinfo/
StorageVolumePreferenceCategory.java 56 /** Physical volume being measured, or {@code null} for internal. */
117 Context context, StorageVolume volume) {
118 return new StorageVolumePreferenceCategory(context, volume);
121 private StorageVolumePreferenceCategory(Context context, StorageVolume volume) {
124 mVolume = volume;
125 mMeasure = StorageMeasurement.getInstance(context, volume);
131 setTitle(volume != null ? volume.getDescription(context)
  /external/chromium_org/chrome/installer/mac/
pkg-dmg 53 [B<--volname> I<volume-name>]
106 =item B<--volname> I<volume-name>
108 The name of the volume in the disk image. If not specified, I<volume-name>
131 otherwise, I<source> is copied to the root of the new volume. B<--copy>
141 Like B<--copy>, but allows symlinks to point out of the volume. Empty symlink
169 the volume. This file will be copied to the new volume and the custom
187 placed as a file within the volume's root folder. Without this option,
188 I<source-folder> is treated as the volume root itself
    [all...]
  /external/chromium_org/third_party/webrtc/modules/audio_device/
audio_device_impl.cc 702 int32_t AudioDeviceModuleImpl::SetSpeakerVolume(uint32_t volume)
705 return (_ptrAudioDevice->SetSpeakerVolume(volume));
712 int32_t AudioDeviceModuleImpl::SpeakerVolume(uint32_t* volume) const
723 *volume = level;
725 WEBRTC_TRACE(kTraceStateInfo, kTraceAudioDevice, _id, "output: volume=%u", *volume);
846 WEBRTC_TRACE(kTraceError, kTraceAudioDevice, _id, "failed to retrieve the speaker-volume step size");
1037 int32_t AudioDeviceModuleImpl::SetMicrophoneVolume(uint32_t volume)
    [all...]
  /frameworks/av/media/libmedia/
AudioSystem.cpp 119 status_t AudioSystem::getMasterVolume(float* volume)
123 *volume = af->masterVolume();
154 status_t AudioSystem::getStreamVolume(audio_stream_type_t stream, float* volume,
160 *volume = af->streamVolume(stream, output);
208 // convert volume steps to natural log scale
210 // change this value to change volume scaling
216 float AudioSystem::linearToLog(int volume)
218 // float v = volume ? exp(float(100 - volume) * dBConvert) : 0;
219 // ALOGD("linearToLog(%d)=%f", volume, v)
    [all...]
  /external/sonivox/arm-fm-22k/lib_src/
eas_public.c 133 * This routine sets common parameters like transpose, volume, etc.
154 * This routine sets common parameters like transpose, volume, etc.
221 * This routine gets common parameters like transpose, volume, etc.
325 pStream->volume = DEFAULT_STREAM_VOLUME;
816 /* set volume */
818 result = EAS_SetVolume(pEASData, pStream, pStream->volume);
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_public.c 133 * This routine sets common parameters like transpose, volume, etc.
154 * This routine sets common parameters like transpose, volume, etc.
221 * This routine gets common parameters like transpose, volume, etc.
325 pStream->volume = DEFAULT_STREAM_VOLUME;
816 /* set volume */
818 result = EAS_SetVolume(pEASData, pStream, pStream->volume);
    [all...]

Completed in 1640 milliseconds

<<11121314151617181920>>