Home
last modified time | relevance | path

Searched refs:ScreenRecordingAudioSource (Results 1 – 5 of 5) sorted by relevance

/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
H A DScreenRecordDialog.java19 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.INTERNAL;
20 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC;
21 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC_AND_INTERNAL;
22 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.NONE;
49 private static final List<ScreenRecordingAudioSource> MODES = Arrays.asList(INTERNAL, MIC,
111 ScreenRecordingAudioSource audioMode = mAudioSwitch.isChecked() in requestScreenCapture()
112 ? (ScreenRecordingAudioSource) mOptions.getSelectedItem() in requestScreenCapture()
H A DScreenRecordingAdapter.java19 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.INTERNAL;
20 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC;
21 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC_AND_INTERNAL;
39 public class ScreenRecordingAdapter extends ArrayAdapter<ScreenRecordingAudioSource> {
48 List<ScreenRecordingAudioSource> objects) { in ScreenRecordingAdapter()
H A DScreenMediaRecorder.java21 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.INTERNAL;
22 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC;
23 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC_AND_INTERNAL;
83 private ScreenRecordingAudioSource mAudioSource;
89 int user, ScreenRecordingAudioSource audioSource, in ScreenMediaRecorder()
H A DRecordingService.java74 private ScreenRecordingAudioSource mAudioSource;
121 mAudioSource = ScreenRecordingAudioSource in onStartCommand()
276 String notificationTitle = mAudioSource == ScreenRecordingAudioSource.NONE in createRecordingNotification()
305 String notificationTitle = mAudioSource == ScreenRecordingAudioSource.NONE in createProcessingNotification()
H A DScreenRecordingAudioSource.java22 public enum ScreenRecordingAudioSource { enum