HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 151 - 175 of 1033) sorted by null

1 2 3 4 5 67 8 91011>>

  /cts/tests/tests/security/src/android/security/cts/activity/
SecureRandomService.java 24 import android.app.Service;
29 public class SecureRandomService extends Service {
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/authenticator/
AuthenticationService.java 19 import android.app.Service;
25 * Service to handle Account authentication. It instantiates the authenticator
28 public class AuthenticationService extends Service {
37 Log.v(TAG, "SampleSyncAdapter Authentication Service started.");
45 Log.v(TAG, "SampleSyncAdapter Authentication Service stopped.");
  /external/perfetto/test/cts/producer/src/android/perfetto/producer/
ProducerIsolatedService.java 20 import android.app.Service;
24 public class ProducerIsolatedService extends Service {
30 builder.setContentTitle("Perfetto isolated service")
31 .setContentText("Perfetto isolated service")
ProducerService.java 20 import android.app.Service;
24 public class ProducerService extends Service {
29 Notification.Builder builder = new Notification.Builder(this, "service");
30 builder.setContentTitle("Perfetto service")
31 .setContentText("Perfetto service")
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/service/
FacadeService.java 17 package com.googlecode.android_scripting.service;
19 import android.app.Service;
30 * FacadeService exposes SL4A's Facade methods through a {@link Service} so
37 * intent.setAction("com.googlecode.android_scripting.service.FacadeService.ACTION_BIND");
40 * Example using the service:<br>
51 * For more info on binding a {@link Service} using a {@link Messenger} please
54 public class FacadeService extends Service {
  /frameworks/base/core/java/android/app/job/
JobService.java 19 import android.app.Service;
28 * <p>This service executes each incoming job on a {@link android.os.Handler} running on your
35 public abstract class JobService extends Service {
42 * &#60;service android:name="MyJobService"
45 * &#60;/service&#62;
48 * <p>If a job service is declared in the manifest but not protected with this
49 * permission, that service will be ignored by the system.
130 * @return {@code true} if your service will continue running, using a separate thread
  /frameworks/base/core/java/android/service/media/
CameraPrewarmService.java 17 package android.service.media;
19 import android.app.Service;
27 * Extend this class to implement a camera prewarm service. See
30 public abstract class CameraPrewarmService extends Service {
33 * Intent action to bind the service as a prewarm service.
37 "android.service.media.CameraPrewarmService.ACTION_PREWARM";
  /frameworks/base/core/java/android/service/settings/suggestions/
SuggestionService.java 17 package android.service.settings.suggestions;
20 import android.app.Service;
28 * This is the base class for implementing suggestion service. A suggestion service is responsible
34 public abstract class SuggestionService extends Service {
  /frameworks/base/core/tests/coretests/BinderProxyCountingTestService/src/com/android/frameworks/coretests/binderproxycountingtestservice/
BinderProxyCountingService.java 19 import android.app.Service;
27 public class BinderProxyCountingService extends Service {
  /frameworks/base/core/tests/coretests/BstatsTestApp/src/com/android/coretests/apps/bstatstestapp/
IsolatedTestService.java 18 import android.app.Service;
24 public class IsolatedTestService extends Service {
  /frameworks/base/core/tests/coretests/src/android/content/
CrossUserContentService.java 19 import android.app.Service;
24 public class CrossUserContentService extends Service {
  /frameworks/base/core/tests/coretests/src/android/os/
BinderThreadPriorityService.java 19 import android.app.Service;
25 * Service used by {@link BinderThreadPriorityTest} to verify
28 public class BinderThreadPriorityService extends Service {
MessengerService.java 19 import android.app.Service;
27 public class MessengerService extends Service {
  /frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/
ReceiverService.java 19 import android.app.Service;
28 * Service type receiver application
30 public class ReceiverService extends Service {
36 Log.d(LOG_TAG, "Receiver service created");
46 Log.d(LOG_TAG, "Receiver service started");
  /frameworks/base/packages/services/Proxy/src/com/android/proxyhandler/
ProxyService.java 18 import android.app.Service;
29 public class ProxyService extends Service {
  /frameworks/base/tests/AccessoryDisplay/common/src/com/android/accessorydisplay/common/
Service.java 27 * Base implementation of a service that communicates over a transport.
33 public abstract class Service implements Transport.Callback {
38 public Service(Context context, Transport transport, int serviceId) {
69 public void onMessageReceived(int service, int what, ByteBuffer content) {
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
SchedulerService.java 21 import android.app.Service;
25 public class SchedulerService extends Service {
  /frameworks/base/tests/ServiceCrashTest/src/com/android/tests/servicecrashtest/
CrashingService.java 19 import android.app.Service;
29 public class CrashingService extends Service {
49 Toast.makeText(this, "service starting", Toast.LENGTH_SHORT).show();
  /frameworks/support/browser/src/main/java/androidx/browser/customtabs/
PostMessageService.java 19 import android.app.Service;
28 * A service to receive postMessage related communication from a Custom Tabs provider.
30 public class PostMessageService extends Service {
  /frameworks/support/compat/src/main/java/androidx/core/app/
ServiceCompat.java 22 import android.app.Service;
33 * Helper for accessing features in {@link android.app.Service}.
42 * Constant to return from {@link android.app.Service#onStartCommand}: if this
43 * service's process is killed while it is started (after returning from
44 * {@link android.app.Service#onStartCommand}), then leave it in the started
46 * re-create the service. Because it is in the started state, it will
47 * guarantee to call {@link android.app.Service#onStartCommand} after creating
48 * the new service instance; if there are not any pending start commands to be
49 * delivered to the service, it will be called with a null intent
53 * and stopped to run for arbitrary periods of time, such as a service
    [all...]
  /frameworks/support/lifecycle/service/src/main/java/androidx/lifecycle/
LifecycleService.java 19 import android.app.Service;
27 * A Service that is also a {@link LifecycleOwner}.
29 public class LifecycleService extends Service implements LifecycleOwner {
57 // In usual service super.onStartCommand is no-op, but in LifecycleService
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/background/systemalarm/
SystemAlarmService.java 19 import android.app.Service;
27 * Service invoked by {@link android.app.AlarmManager} to run work tasks.
58 return Service.START_STICKY;
  /packages/apps/Contacts/tests/src/com/android/contacts/tests/testauth/
TestAuthenticationService.java 19 import android.app.Service;
24 public abstract class TestAuthenticationService extends Service {
31 Log.v(TestauthConstants.LOG_TAG, this + " Service started.");
39 Log.v(TestauthConstants.LOG_TAG, this + " Service stopped.");
  /packages/apps/Terminal/src/com/android/terminal/
TerminalService.java 19 import android.app.Service;
26 * Background service that keeps {@link Terminal} instances running and warm
29 public class TerminalService extends Service {
48 // If our first terminal, start ourselves as long-lived service
64 // If our last terminal, tear down long-lived service
  /packages/services/Telephony/src/com/android/phone/
TelephonyDebugService.java 21 import android.app.Service;
30 * A debug service for telephony.
32 public class TelephonyDebugService extends Service {

Completed in 1109 milliseconds

1 2 3 4 5 67 8 91011>>