Home
last modified time | relevance | path

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

/aosp12/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenrecord/
H A DRecordingServiceTest.java77 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 DDefaultServiceBinder.java26 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 DScreenRecordDialog.java115 RecordingService.REQUEST_CODE, in requestScreenCapture()
116 RecordingService.getStartIntent( in requestScreenCapture()
121 RecordingService.REQUEST_CODE, in requestScreenCapture()
122 RecordingService.getStopIntent(userContext), in requestScreenCapture()
H A DRecordingService.java53 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()