/external/sonivox/arm-fm-22k/lib_src/ |
eas_pcmdata.h | 105 EAS_I16 volume; /* volume for stream */ member in struct:s_pcm_state_tag
|
/external/sonivox/arm-hybrid-22k/host_src/ |
eas_types.h | 244 EAS_U8 volume; /* CC7 */ member in struct:s_midi_controllers_tag
|
/external/sonivox/arm-hybrid-22k/lib_src/ |
eas_pcmdata.h | 105 EAS_I16 volume; /* volume for stream */ member in struct:s_pcm_state_tag
|
/external/sonivox/arm-wt-22k/host_src/ |
eas_types.h | 249 EAS_U8 volume; /* CC7 */ member in struct:s_midi_controllers_tag
|
/external/sonivox/arm-wt-22k/lib_src/ |
eas_pcmdata.h | 105 EAS_I16 volume; /* volume for stream */ member in struct:s_pcm_state_tag
|
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/audio/ |
MediaEnvReverbTest.java | 53 // Implementor UUID for volume controller effect defined in 358 int volume = am.getStreamMaxVolume(AudioManager.STREAM_MUSIC); local 365 // creating a volume controller on output mix ensures that ro.audio.silent mutes 415 am.setStreamVolume(AudioManager.STREAM_MUSIC, volume, 0); 433 int volume = am.getStreamMaxVolume(AudioManager.STREAM_MUSIC); local 438 // creating a volume controller on output mix ensures that ro.audio.silent mutes 502 am.setStreamVolume(AudioManager.STREAM_MUSIC, volume, 0);
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
SegmentedButtons.java | 17 package com.android.systemui.volume;
|
/frameworks/support/v7/mediarouter/src/android/support/v7/media/ |
MediaRouteProvider.java | 42 * as volume changes or {@link MediaControlIntent media control intents} 334 * Requests to set the volume of the route. 336 * @param volume The new volume value between 0 and {@link MediaRouteDescriptor#getVolumeMax}. 338 public void onSetVolume(int volume) { 342 * Requests an incremental volume update for the route. 344 * @param delta The delta to add to the current volume.
|
/frameworks/wilhelm/tests/automated/ |
BufferQueue_test.cpp | 42 // volume of sine wave in range 0.0 to 1.0 463 #if 1 // temporary workaround if hardware volume control is not working 464 const char *VOLUME = getenv("BufferQueue_test_VOLUME"); 465 if (NULL != VOLUME) { 466 float volume = atof(VOLUME); local 467 if (volume >= 0.0f && volume <= 1.0f) { 468 gVolume = volume;
|
/hardware/qcom/audio/hal/msm8974/ |
platform.h | 230 volume_t volume; member in struct:csd_data
|
/hardware/qcom/audio/legacy/alsa_sound/ |
AudioHardwareALSA.h | 235 status_t setMasterVolume(float volume); 458 /** set the audio volume of a voice call. Range is between 0.0 and 1.0 */ 459 virtual status_t setVoiceVolume(float volume); 462 * set the audio volume for all audio activities other than voice call. 466 virtual status_t setMasterVolume(float volume); 468 virtual status_t setFmVolume(float volume);
|
/prebuilts/tools/darwin-x86/sdl/include/SDL/ |
SDL_audio.h | 253 * them, performing addition, volume adjustment, and overflow clipping. 254 * The volume ranges from 0 - 128, and should be set to SDL_MIX_MAXVOLUME 255 * for full audio volume. Note this does not change hardware volume. 258 extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, Uint32 len, int volume);
|
/prebuilts/tools/linux-x86/sdl/include/SDL/ |
SDL_audio.h | 253 * them, performing addition, volume adjustment, and overflow clipping. 254 * The volume ranges from 0 - 128, and should be set to SDL_MIX_MAXVOLUME 255 * for full audio volume. Note this does not change hardware volume. 258 extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, Uint32 len, int volume);
|
/prebuilts/tools/windows/sdl/include/SDL/ |
SDL_audio.h | 253 * them, performing addition, volume adjustment, and overflow clipping. 254 * The volume ranges from 0 - 128, and should be set to SDL_MIX_MAXVOLUME 255 * for full audio volume. Note this does not change hardware volume. 258 extern DECLSPEC void SDLCALL SDL_MixAudio(Uint8 *dst, const Uint8 *src, Uint32 len, int volume);
|
/cts/tests/tests/provider/src/android/provider/cts/ |
MediaStore_Audio_AlbumsTest.java | 59 // can not accept any other volume names 60 String volume = "fakeVolume"; local 61 assertNull(mContentResolver.query(Albums.getContentUri(volume), null, null, null, null));
|
/developers/build/prebuilts/gradle/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/ |
SampleMediaRouteProvider.java | 269 public void onSetVolume(int volume) { 270 Log.d(TAG, mRouteId + ": Set volume to " + volume); 272 setVolumeInternal(volume); 278 Log.d(TAG, mRouteId + ": Update volume by " + delta); 329 private void setVolumeInternal(int volume) { 330 if (volume >= 0 && volume <= VOLUME_MAX) { 331 mVolume = volume; 332 Log.d(TAG, mRouteId + ": New volume is " + mVolume) [all...] |
/developers/samples/android/media/MediaRouter/Application/src/main/java/com/example/android/mediarouter/provider/ |
SampleMediaRouteProvider.java | 269 public void onSetVolume(int volume) { 270 Log.d(TAG, mRouteId + ": Set volume to " + volume); 272 setVolumeInternal(volume); 278 Log.d(TAG, mRouteId + ": Update volume by " + delta); 329 private void setVolumeInternal(int volume) { 330 if (volume >= 0 && volume <= VOLUME_MAX) { 331 mVolume = volume; 332 Log.d(TAG, mRouteId + ": New volume is " + mVolume) [all...] |
/development/samples/Support7Demos/src/com/example/android/supportv7/media/ |
SampleMediaRouteProvider.java | 277 public void onSetVolume(int volume) { 278 Log.d(TAG, mRouteId + ": Set volume to " + volume); 280 setVolumeInternal(volume); 286 Log.d(TAG, mRouteId + ": Update volume by " + delta); 341 private void setVolumeInternal(int volume) { 342 if (volume >= 0 && volume <= VOLUME_MAX) { 343 mVolume = volume; 344 Log.d(TAG, mRouteId + ": New volume is " + mVolume) [all...] |
/development/samples/browseable/MediaRouter/src/com.example.android.mediarouter/provider/ |
SampleMediaRouteProvider.java | 269 public void onSetVolume(int volume) { 270 Log.d(TAG, mRouteId + ": Set volume to " + volume); 272 setVolumeInternal(volume); 278 Log.d(TAG, mRouteId + ": Update volume by " + delta); 329 private void setVolumeInternal(int volume) { 330 if (volume >= 0 && volume <= VOLUME_MAX) { 331 mVolume = volume; 332 Log.d(TAG, mRouteId + ": New volume is " + mVolume) [all...] |
/device/moto/shamu/ |
audio_effects.conf | 89 volume {
|
/device/samsung/manta/ |
audio_effects.conf | 57 volume {
|
/external/bluetooth/bluedroid/bta/hf_client/ |
bta_hf_client_int.h | 251 extern void bta_hf_client_send_at_vgs(UINT32 volume); 252 extern void bta_hf_client_send_at_vgm(UINT32 volume);
|
/external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/ |
earcons_background.js | 71 this.currentAudio.volume = 0.7;
|
/external/chromium_org/chrome/browser/resources/network_speech_synthesis/ |
tts_extension.js | 218 if (this.currentUtterance_.options.volume !== undefined) { 219 // Both APIs use the same range for volume, between 0.0 and 1.0. 220 this.audioElement_.volume = this.currentUtterance_.options.volume;
|
/external/chromium_org/chrome/browser/speech/ |
tts_message_filter.cc | 92 params.volume = request.volume;
|