Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
H A DScreenRecordDialog.java23 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.INTERNAL;
24 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC;
25 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.MIC_AND_INTERNAL;
26 import static com.android.systemui.screenrecord.ScreenRecordingAudioSource.NONE;
65 private static final List<ScreenRecordingAudioSource> MODES = Arrays.asList(INTERNAL, MIC,
169 ScreenRecordingAudioSource audioMode = mAudioSwitch.isChecked() in requestScreenCapture()
170 ? (ScreenRecordingAudioSource) mOptions.getSelectedItem() in requestScreenCapture()
H A DScreenRecordPermissionDialog.kt137 if (audioSwitch.isChecked) options.selectedItem as ScreenRecordingAudioSource
138 else ScreenRecordingAudioSource.NONE
181 ScreenRecordingAudioSource.INTERNAL,
182 ScreenRecordingAudioSource.MIC,
183 ScreenRecordingAudioSource.MIC_AND_INTERNAL
H A DScreenRecordingAdapter.java35 public class ScreenRecordingAdapter extends ArrayAdapter<ScreenRecordingAudioSource> {
41 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;
89 private ScreenRecordingAudioSource mAudioSource;
97 int user, ScreenRecordingAudioSource audioSource, in ScreenMediaRecorder()
H A DScreenRecordingAudioSource.java22 public enum ScreenRecordingAudioSource { enum
H A DRecordingService.java84 private ScreenRecordingAudioSource mAudioSource;
152 mAudioSource = ScreenRecordingAudioSource in onStartCommand()
297 String notificationTitle = mAudioSource == ScreenRecordingAudioSource.NONE in createRecordingNotification()
326 String notificationTitle = mAudioSource == ScreenRecordingAudioSource.NONE in createProcessingNotification()