Home
last modified time | relevance | path

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

/cts/tests/app/app/src/android/app/stubs/
DCommandReceiver.java70 doStartForegroundService(context, LocalForegroundService.class); in onReceive()
73 doStopForegroundService(context, LocalForegroundService.class); in onReceive()
112 int command = LocalForegroundService.COMMAND_START_FOREGROUND; in doStartForegroundService()
113 fgsIntent.putExtras(LocalForegroundService.newCommand(new Binder(), command)); in doStartForegroundService()
120 fgsIntent.putExtras(LocalForegroundService.newCommand(new Binder(), command)); in doStartForegroundServiceWithType()
DLocalForegroundServiceLocation.java38 public class LocalForegroundServiceLocation extends LocalForegroundService {
DLocalForegroundService.java32 public class LocalForegroundService extends LocalService { class
/cts/tests/app/src/android/app/cts/
DServiceTest.java29 import android.app.stubs.LocalForegroundService;
654 mLocalForegroundService = new Intent(mContext, LocalForegroundService.class); in setUp()
795 .putExtras(LocalForegroundService.newCommand(mStateReceiver, command)); in foregroundServiceIntent()
813 startForegroundService(LocalForegroundService.COMMAND_START_FOREGROUND); in testForegroundService_dontRemoveNotificationOnStop()
815 assertNotification(1, LocalForegroundService.getNotificationTitle(1)); in testForegroundService_dontRemoveNotificationOnStop()
820 LocalForegroundService.COMMAND_STOP_FOREGROUND_DONT_REMOVE_NOTIFICATION); in testForegroundService_dontRemoveNotificationOnStop()
822 assertNotification(1, LocalForegroundService.getNotificationTitle(1)); in testForegroundService_dontRemoveNotificationOnStop()
831 startForegroundService(LocalForegroundService.COMMAND_START_FOREGROUND); in testForegroundService_dontRemoveNotificationOnStop()
834 assertNotification(2, LocalForegroundService.getNotificationTitle(2)); in testForegroundService_dontRemoveNotificationOnStop()
866 startForegroundService(LocalForegroundService.COMMAND_START_FOREGROUND); in testForegroundServiceRemoveNotificationOnStop()
[all …]