Home
last modified time | relevance | path

Searched refs:isCurrentlyRecording (Results 1 – 4 of 4) sorted by relevance

/aosp14/frameworks/base/services/tests/wmtests/src/com/android/server/wm/
H A DContentRecorderTests.java154 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testIsCurrentlyRecording()
157 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testIsCurrentlyRecording()
164 assertThat(mContentRecorder.isCurrentlyRecording()).isTrue(); in testUpdateRecording_display()
173 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testUpdateRecording_display_invalidDisplayIdToMirror()
182 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testUpdateRecording_display_noDisplayContentToMirror()
192 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testUpdateRecording_task_featureDisabled()
200 assertThat(mContentRecorder.isCurrentlyRecording()).isTrue(); in testUpdateRecording_task_featureEnabled()
210 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testUpdateRecording_task_nullToken()
221 assertThat(mContentRecorder.isCurrentlyRecording()).isFalse(); in testUpdateRecording_task_noWindowContainer()
232 assertThat(mContentRecorder.isCurrentlyRecording()).isTrue(); in testUpdateRecording_wasPaused()
[all …]
H A DDisplayContentTests.java2744 assertThat(actualDC.isCurrentlyRecording()).isFalse(); in testVirtualDisplayContent_withoutSurface()
2777 assertThat(actualDC.isCurrentlyRecording()).isTrue(); in testVirtualDisplayContent_withSurface()
2815 assertThat(actualDC.isCurrentlyRecording()).isTrue(); in testVirtualDisplayContent_displayMirroring()
/aosp14/frameworks/base/services/core/java/com/android/server/wm/
H A DContentRecorder.java124 boolean isCurrentlyRecording() { in isCurrentlyRecording() method in ContentRecorder
133 if (isCurrentlyRecording() && (mDisplayContent.getLastHasContent() in updateRecording()
149 if (!isCurrentlyRecording() || mLastRecordedBounds == null) { in onConfigurationChanged()
299 if (mDisplayContent.getLastHasContent() || isCurrentlyRecording() in startRecordingIfNeeded()
591 if (isCurrentlyRecording() && mLastRecordedBounds != null) { in onVisibleRequestedChanged()
H A DDisplayContent.java6760 boolean isCurrentlyRecording() { in isCurrentlyRecording() method
6761 return mContentRecorder != null && mContentRecorder.isCurrentlyRecording(); in isCurrentlyRecording()