OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LocalForegroundService
(Results
1 - 4
of
4
) sorted by null
/cts/tests/app/app/src/android/app/stubs/
CommandReceiver.java
70
doStartForegroundService(context,
LocalForegroundService
.class);
73
doStopForegroundService(context,
LocalForegroundService
.class);
112
int command =
LocalForegroundService
.COMMAND_START_FOREGROUND;
113
fgsIntent.putExtras(
LocalForegroundService
.newCommand(new Binder(), command));
120
fgsIntent.putExtras(
LocalForegroundService
.newCommand(new Binder(), command));
LocalForegroundServiceLocation.java
38
public class LocalForegroundServiceLocation extends
LocalForegroundService
{
LocalForegroundService.java
32
public class
LocalForegroundService
extends LocalService {
34
private static final String TAG = "
LocalForegroundService
";
35
protected static final String EXTRA_COMMAND = "
LocalForegroundService
.command";
/cts/tests/app/src/android/app/cts/
ServiceTest.java
29
import android.app.stubs.
LocalForegroundService
;
654
mLocalForegroundService = new Intent(mContext,
LocalForegroundService
.class);
795
.putExtras(
LocalForegroundService
.newCommand(mStateReceiver, command));
813
startForegroundService(
LocalForegroundService
.COMMAND_START_FOREGROUND);
815
assertNotification(1,
LocalForegroundService
.getNotificationTitle(1));
820
LocalForegroundService
.COMMAND_STOP_FOREGROUND_DONT_REMOVE_NOTIFICATION);
822
assertNotification(1,
LocalForegroundService
.getNotificationTitle(1));
831
startForegroundService(
LocalForegroundService
.COMMAND_START_FOREGROUND);
[
all
...]
Completed in 216 milliseconds