Home
last modified time | relevance | path

Searched refs:NotificationService (Results 1 – 11 of 11) sorted by relevance

/packages/apps/TV/src/com/android/tv/recommendation/
DNotificationService.java62 public class NotificationService extends Service class
121 public NotificationService() { in NotificationService() method in NotificationService
175 mRecommender = new Recommender(NotificationService.this, NotificationService.this, true); in handleInitializeRecommender()
476 private static ImageLoader.ImageLoaderCallback<NotificationService> createChannelLogoCallback( in createChannelLogoCallback()
477 NotificationService service, in createChannelLogoCallback()
482 return new ImageLoader.ImageLoaderCallback<NotificationService>(service) { in createChannelLogoCallback()
484 public void onBitmapLoaded(NotificationService service, Bitmap channelLogo) { in createChannelLogoCallback()
552 private static class NotificationHandler extends WeakHandler<NotificationService> {
553 public NotificationHandler(@NonNull Looper looper, NotificationService ref) {
558 public void handleMessage(Message msg, @NonNull NotificationService notificationService) {
/packages/providers/MediaProvider/photopicker/src/com/android/photopicker/inject/
DActivityModule.kt37 import com.android.photopicker.data.NotificationService
78 private lateinit var notificationService: NotificationService
141 @ActivityRetainedScoped notificationService: NotificationService, in provideDataService()
232 fun provideNotificationService(): NotificationService { in provideNotificationService()
236 NotificationService.TAG, in provideNotificationService()
DEmbeddedServiceModule.kt41 import com.android.photopicker.data.NotificationService in <lambda>()
80 private lateinit var notificationService: NotificationService in <lambda>()
184 notificationService: NotificationService, in <lambda>()
279 fun provideNotificationService(): NotificationService { in <lambda>()
283 NotificationService.TAG, in <lambda>()
/packages/apps/TV/src/com/android/tv/receiver/
DBootCompletedReceiver.java33 import com.android.tv.recommendation.NotificationService;
70 Intent notificationIntent = new Intent(context, NotificationService.class); in onReceive()
71 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onReceive()
/packages/providers/MediaProvider/photopicker/src/com/android/photopicker/data/
DNotificationService.kt30 interface NotificationService { interface
DNotificationServiceImpl.kt26 class NotificationServiceImpl : NotificationService {
DDataServiceImpl.kt75 private val notificationService: NotificationService, in <lambda>()
/packages/providers/MediaProvider/photopicker/tests/src/com/android/photopicker/data/
DTestNotificationServiceImpl.kt28 class TestNotificationServiceImpl : NotificationService { in <lambda>()
DDataServiceImplTest.kt333 val mockNotificationService = mock(NotificationService::class.java) in <lambda>()
/packages/apps/TV/src/com/android/tv/ui/
DTunableTvView.java83 import com.android.tv.recommendation.NotificationService;
661 && params.getString(NotificationService.TUNE_PARAMS_RECOMMENDATION_TYPE) in tuneTo()
/packages/apps/TV/src/com/android/tv/
DMainActivity.java132 import com.android.tv.recommendation.NotificationService;
877 Intent notificationIntent = new Intent(this, NotificationService.class); in onStart()
878 notificationIntent.setAction(NotificationService.ACTION_SHOW_RECOMMENDATION); in onStart()