Lines Matching refs:streamType

538      * @param streamType The stream type to adjust. One of {@link #STREAM_VOICE_CALL},
548 public void adjustStreamVolume(int streamType, int direction, int flags) {
554 service.adjustStreamVolume(streamType, direction, flags);
674 * @param streamType The stream type whose maximum volume index is returned.
678 public int getStreamMaxVolume(int streamType) {
684 return service.getStreamMaxVolume(streamType);
695 * @param streamType The stream type whose volume index is returned.
700 public int getStreamVolume(int streamType) {
706 return service.getStreamVolume(streamType);
719 public int getLastAudibleStreamVolume(int streamType) {
725 return service.getLastAudibleStreamVolume(streamType);
774 * @param streamType The stream whose volume index should be set.
781 public void setStreamVolume(int streamType, int index, int flags) {
787 service.setStreamVolume(streamType, index, flags);
873 * @param streamType The stream to be soloed/unsoloed.
876 public void setStreamSolo(int streamType, boolean state) {
879 service.setStreamSolo(streamType, state, mICallBack);
902 * @param streamType The stream to be muted/unmuted.
905 public void setStreamMute(int streamType, boolean state) {
908 service.setStreamMute(streamType, state, mICallBack);
919 public boolean isStreamMute(int streamType) {
922 return service.isStreamMute(streamType);
969 * specifying streamType == -1 releases control to the
974 public void forceVolumeControlStream(int streamType) {
977 service.forceVolumeControlStream(streamType, mICallBack);
1543 public void adjustLocalOrRemoteStreamVolume(int streamType, int direction) {
1544 if (streamType != STREAM_MUSIC) {
1545 Log.w(TAG, "adjustLocalOrRemoteStreamVolume() doesn't support stream " + streamType);
1549 service.adjustLocalOrRemoteStreamVolume(streamType, direction);
1927 * @param streamType the main audio stream type affected by the focus request
1937 public int requestAudioFocus(OnAudioFocusChangeListener l, int streamType, int durationHint) {
1948 status = service.requestAudioFocus(streamType, durationHint, mICallBack,
1962 * @param streamType use STREAM_RING for focus requests when ringing, VOICE_CALL for
1967 public void requestAudioFocusForCall(int streamType, int durationHint) {
1970 service.requestAudioFocus(streamType, durationHint, mICallBack, null,
2371 * @param streamType The stream type to query. One of
2404 public int getDevicesForStream(int streamType) {
2405 switch (streamType) {
2413 return AudioSystem.getDevicesForStream(streamType);