Home
last modified time | relevance | path

Searched refs:StreamState (Results 1 – 7 of 7) sorted by relevance

/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
DVolumeDialogController.java27 import com.android.systemui.plugins.VolumeDialogController.StreamState;
37 @DependsOn(target = StreamState.class)
83 @ProvidesInterface(version = StreamState.VERSION)
84 public static final class StreamState { class
97 public StreamState copy() { in copy()
98 final StreamState rt = new StreamState(); in copy()
118 public final SparseArray<StreamState> states = new SparseArray<>();
164 final StreamState ss = states.valueAt(i); in toString()
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
DVolumeDialogControllerImpl.java554 private StreamState streamStateW(int stream) {
555 StreamState ss = mState.states.get(stream);
557 ss = new StreamState();
569 final StreamState ss = streamStateW(stream);
583 final StreamState ss = streamStateW(stream);
592 final StreamState ss = streamStateW(stream);
615 final StreamState ss = streamStateW(stream);
1279 final StreamState ss = streamStateW(stream); in onRemoteUpdate()
DVolumeDialogImpl.java128 import com.android.systemui.plugins.VolumeDialogController.StreamState;
836 private static int getVolumeFromProgress(StreamState state, SeekBar seekBar, int progress) { in getVolumeFromProgress()
841 private static int getProgressFromVolume(StreamState state, SeekBar seekBar, int volume) { in getProgressFromVolume()
1245 final StreamState ss = mState.states.get(AudioManager.STREAM_RING); in initRingerH()
1440 final StreamState ss = mState.states.get(AudioManager.STREAM_RING); in maybeShowToastH()
1760 final StreamState ss = mState.states.get(AudioManager.STREAM_RING);
1871 final StreamState ss = state.states.valueAt(i);
1904 final StreamState ss = mState.states.get(row.stream);
2040 private boolean isStreamMuted(final StreamState streamState) {
2225 private String getStreamLabelH(StreamState ss) {
[all …]
/frameworks/av/services/camera/libcameraservice/device3/
DCamera3Stream.h492 enum StreamState { enum
DCamera3OutputStream.h421 static bool shouldLogError(status_t res, StreamState state);
DCamera3OutputStream.cpp363 StreamState state = mState; in returnBufferCheckedLocked()
915 bool Camera3OutputStream::shouldLogError(status_t res, StreamState state) { in shouldLogError()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/volume/
DVolumeDialogImplTest.java254 VolumeDialogController.StreamState ss = new VolumeDialogController.StreamState(); in createShellState()