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

/frameworks/av/services/audiopolicy/
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.cpp423 command->mStatus = AudioSystem::setStreamVolume(data->mStream,
953 int AudioPolicyService::setStreamVolume(audio_stream_type_t stream, function in class:android::AudioPolicyService
/frameworks/base/media/java/android/media/tv/
H A DTvInputService.java921 void setStreamVolume(float volume) { method in class:TvInputService.Session
H A DTvView.java259 public void setStreamVolume(float volume) { method in class:TvView
260 if (DEBUG) Log.d(TAG, "setStreamVolume(" + volume + ")");
267 mSession.setStreamVolume(volume);
913 mSession.setStreamVolume(mStreamVolume);
H A DTvInputManager.java1283 public void setStreamVolume(float volume) { method in class:TvInputManager.Session
1915 public void setStreamVolume(float volume) { method in class:TvInputManager.Hardware
1917 mInterface.setStreamVolume(volume);
/frameworks/av/media/libmedia/
H A DAudioSystem.cpp145 status_t AudioSystem::setStreamVolume(audio_stream_type_t stream, float value, function in class:android::AudioSystem
151 af->setStreamVolume(stream, value, output);
H A DIAudioFlinger.cpp331 virtual status_t setStreamVolume(audio_stream_type_t stream, float value, function in class:android::BpAudioFlinger
1019 reply->writeInt32( setStreamVolume((audio_stream_type_t) stream, volume, output) );
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DVolumePanel.java620 private void setStreamVolume(StreamControl sc, int index, int flags) { method in class:VolumePanel
631 mAudioManager.setStreamVolume(sc.streamType, index, flags);
1549 setStreamVolume(sc, progress,
/frameworks/base/services/core/java/com/android/server/tv/
H A DTvInputHardwareManager.java922 public void setStreamVolume(float volume) throws RemoteException { method in class:TvInputHardwareManager.TvInputHardwareImpl
/frameworks/av/services/audioflinger/
H A DAudioFlinger.cpp897 ALOGW("setStreamVolume() invalid stream %d", stream);
902 ALOGW("setStreamVolume() pid %d cannot use internal stream type %d", caller, stream);
909 status_t AudioFlinger::setStreamVolume(audio_stream_type_t stream, float value, function in class:android::AudioFlinger
936 mPlaybackThreads.valueAt(i)->setStreamVolume(stream, value);
939 thread->setStreamVolume(stream, value);
H A DThreads.cpp1592 void AudioFlinger::PlaybackThread::setStreamVolume(audio_stream_type_t stream, float value) function in class:android::AudioFlinger::PlaybackThread
4852 thread->setStreamVolume(AUDIO_STREAM_PATCH, 1.0f);
/frameworks/base/media/java/android/media/
H A DAudioManager.java418 * @see #setStreamVolume(int, int, int)
449 * @see #setStreamVolume(int, int, int)
796 * <li> {@link #setStreamVolume(int, int, int)}
820 * @see #setStreamVolume(int, int, int)
852 * @see #setStreamVolume(int, int, int)
886 * @see #setStreamVolume(int, int, int)
986 * @see #setStreamVolume(int, int, int)
1074 public void setStreamVolume(int streamType, int index, int flags) { method in class:AudioManager
1080 service.setStreamVolume(streamType, index, flags, mContext.getOpPackageName());
1083 Log.e(TAG, "Dead object in setStreamVolume",
[all...]
H A DAudioService.java517 // Used when safe volume warning message display is requested by setStreamVolume(). In this
1197 // setStreamVolume() in case the user has to acknowledge the safe volume warning message.
1236 /** @see AudioManager#setStreamVolume(int, int, int) */
1237 public void setStreamVolume(int streamType, int index, int flags, String callingPackage) { method in class:AudioService
1238 setStreamVolume(streamType, index, flags, callingPackage, Binder.getCallingUid());
1241 private void setStreamVolume(int streamType, int index, int flags, String callingPackage, method in class:AudioService
5817 setStreamVolume(streamType, direction, flags, callingPackage, uid);

Completed in 2888 milliseconds