Home
last modified time | relevance | path

Searched refs:mNotificationId (Results 1 – 2 of 2) sorted by relevance

/cts/tests/app/app/src/android/app/stubs/
DLocalForegroundServiceLocation.java39 private int mNotificationId = 10; field in LocalForegroundServiceLocation
60 mNotificationId ++; in onStartCommand()
63 .setContentTitle(getNotificationTitle(mNotificationId)) in onStartCommand()
67 startForeground(mNotificationId, notification); in onStartCommand()
DLocalForegroundService.java56 private int mNotificationId = 0; field in LocalForegroundService
90 mNotificationId ++; in onStartCommand()
92 Log.d(getTag(), "Starting foreground using notification " + mNotificationId); in onStartCommand() local
95 .setContentTitle(getNotificationTitle(mNotificationId)) in onStartCommand()
102 startForeground(mNotificationId, builder.build()); in onStartCommand()