Searched refs:RecordingService (Results 1 – 4 of 4) sorted by relevance
/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenrecord/ |
H A D | RecordingServiceTest.java | 77 private RecordingService mRecordingService; 82 mRecordingService = Mockito.spy(new RecordingService(mController, mExecutor, mUiEventLogger, in setUp() 107 Intent startIntent = RecordingService.getStartIntent(mContext, 0, 0); in testLogStartRecording() 115 Intent stopIntent = RecordingService.getStopIntent(mContext); in testLogStopFromQsTile() 126 Intent stopIntent = RecordingService.getNotificationIntent(mContext); in testLogStopFromNotificationIntent() 140 Intent startIntent = RecordingService.getStartIntent(mContext, 0, 0); in testErrorUpdatesState()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/dagger/ |
H A D | DefaultServiceBinder.java | 26 import com.android.systemui.screenrecord.RecordingService; 72 @ClassKey(RecordingService.class) 73 public abstract Service bindRecordingService(RecordingService service); in bindRecordingService()
|
/aosp12/frameworks/base/packages/SystemUI/src/com/android/systemui/screenrecord/ |
H A D | ScreenRecordDialog.java | 115 RecordingService.REQUEST_CODE, in requestScreenCapture() 116 RecordingService.getStartIntent( in requestScreenCapture() 121 RecordingService.REQUEST_CODE, in requestScreenCapture() 122 RecordingService.getStopIntent(userContext), in requestScreenCapture()
|
H A D | RecordingService.java | 53 public class RecordingService extends Service implements MediaRecorder.OnInfoListener { class 82 public RecordingService(RecordingController controller, @LongRunning Executor executor, in RecordingService() method in RecordingService 103 return new Intent(context, RecordingService.class) in getStartIntent() 405 return new Intent(context, RecordingService.class) in getStopIntent() 416 return new Intent(context, RecordingService.class).setAction(ACTION_STOP_NOTIF); in getNotificationIntent() 420 return new Intent(context, RecordingService.class).setAction(ACTION_SHARE) in getShareIntent()
|