Home
last modified time | relevance | path

Searched refs:isStarting (Results 1 – 8 of 8) sorted by relevance

/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/qs/tiles/
DScreenRecordTileTest.java103 when(mController.isStarting()).thenReturn(false); in testNotActive()
121 when(mController.isStarting()).thenReturn(true); in testIsStarting()
134 when(mController.isStarting()).thenReturn(true); in testCancelRecording()
145 when(mController.isStarting()).thenReturn(false); in testIsRecording()
159 when(mController.isStarting()).thenReturn(false); in testStopRecording()
177 when(mController.isStarting()).thenReturn(false); in testForceExpandIcon_notRecordingNotStarting()
188 when(mController.isStarting()).thenReturn(false); in testForceExpandIcon_recordingNotStarting()
199 when(mController.isStarting()).thenReturn(true); in testForceExpandIcon_startingNotRecording()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/
DScreenRecordTile.java87 if (mController.isStarting()) { in handleClick()
99 boolean isStarting = mController.isStarting(); in handleUpdateState()
102 state.value = isRecording || isStarting; in handleUpdateState()
103 state.state = (isRecording || isStarting) ? Tile.STATE_ACTIVE : Tile.STATE_INACTIVE; in handleUpdateState()
111 } else if (isStarting) { in handleUpdateState()
/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenrecord/
DRecordingControllerTest.java77 assertTrue(mController.isStarting()); in testCancelCountdown()
82 assertFalse(mController.isStarting()); in testCancelCountdown()
115 assertFalse(mController.isStarting()); in testStopRecording()
/frameworks/av/media/libaaudio/src/client/
DIsochronousClockModel.h46 bool isStarting() const;
DAudioStreamInternalCapture.cpp84 if (mClockModel.isStarting()) { in processDataNow()
DIsochronousClockModel.cpp88 bool IsochronousClockModel::isStarting() const { in isStarting() function in IsochronousClockModel
DAudioStreamInternalPlay.cpp138 if (mClockModel.isStarting()) { in processDataNow()
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/
DRecordingController.java173 public boolean isStarting() { in isStarting() method in RecordingController