Searched defs:setStreamVolume (Results 1 - 13 of 13) sorted by relevance

/frameworks/av/services/audiopolicy/service/
H A DAudioPolicyClientImpl.cpp126 status_t AudioPolicyService::AudioPolicyClient::setStreamVolume(audio_stream_type_t stream, function in class:android::AudioPolicyService::AudioPolicyClient
130 return mAudioPolicyService->setStreamVolume(stream, volume, output,
H A DAudioPolicyService.cpp498 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
1110 int AudioPolicyService::setStreamVolume(audio_stream_type_t stream, function in class:android::AudioPolicyService
/frameworks/base/media/java/android/media/tv/
H A DTvView.java275 public void setStreamVolume(@FloatRange(from = 0.0, to = 1.0) float volume) { method in class:TvView
276 if (DEBUG) Log.d(TAG, "setStreamVolume(" + volume + ")");
282 mSession.setStreamVolume(volume);
1094 mSession.setStreamVolume(mStreamVolume);
H A DTvInputService.java1177 void setStreamVolume(float volume) { method in class:TvInputService.Session
H A DTvInputManager.java1751 public void setStreamVolume(float volume) { method in class:TvInputManager.Session
2499 public void setStreamVolume(float volume) { method in class:TvInputManager.Hardware
2501 mInterface.setStreamVolume(volume);
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp156 status_t AudioSystem::setStreamVolume(audio_stream_type_t stream, float value, function in class:android::AudioSystem
162 af->setStreamVolume(stream, value, output);
H A DIAudioFlinger.cpp345 virtual status_t setStreamVolume(audio_stream_type_t stream, float value, function in class:android::BpAudioFlinger
1061 reply->writeInt32( setStreamVolume((audio_stream_type_t) stream, volume, output) );
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumeDialogController.java231 public void setStreamVolume(int stream, int level) { method in class:VolumeDialogController
460 mMediaSessionsCallbacksW.setStreamVolume(stream, level);
463 mAudio.setStreamVolume(stream, level, 0);
881 public void setStreamVolume(int stream, int level) { method in class:VolumeDialogController.MediaSessionsCallbacks
884 Log.w(TAG, "setStreamVolume: No token found for stream: " + stream);
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHardwareManager.java1001 public void setStreamVolume(float volume) throws RemoteException { method in class:TvInputHardwareManager.TvInputHardwareImpl
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp976 ALOGW("setStreamVolume() invalid stream %d", stream);
981 ALOGW("setStreamVolume() pid %d cannot use internal stream type %d", caller, stream);
988 status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value, function in class:android::AudioFlinger
1015 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
1018 thread->setStreamVolume(stream, value);
H A DThreads.cpp1978 void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value) function in class:android::AudioFlinger::PlaybackThread
5573 thread->setStreamVolume(AUDIO_STREAM_PATCH, 1.0f);
/frameworks/base/media/java/android/media/
H A DAudioManager.java398 * @see #setStreamVolume(int, int, int)
429 * @see #setStreamVolume(int, int, int)
781 * <li> {@link #setStreamVolume(int, int, int)}
805 * @see #setStreamVolume(int, int, int)
837 * @see #setStreamVolume(int, int, int)
866 * @see #setStreamVolume(int, int, int)
960 * @see #setStreamVolume(int, int, int)
1043 public void setStreamVolume(int streamType, int index, int flags) { method in class:AudioManager
1046 service.setStreamVolume(streamType, index, flags, getContext().getOpPackageName());
/frameworks/base/services/core/java/com/android/server/audio/
H A DAudioService.java539 // Used when safe volume warning message display is requested by setStreamVolume(). In this
1434 // setStreamVolume() in case the user has to acknowledge the safe volume warning message.
1512 /** @see AudioManager#setStreamVolume(int, int, int) */
1513 public void setStreamVolume(int streamType, int index, int flags, String callingPackage) { method in class:AudioService
1514 setStreamVolume(streamType, index, flags, callingPackage, callingPackage,
1518 private void setStreamVolume(int streamType, int index, int flags, String callingPackage, method in class:AudioService
6171 setStreamVolume(streamType, direction, flags, callingPackage, callingPackage, uid);

Completed in 3170 milliseconds