HomeSort by relevance Sort by last modified time
    Searched refs:Service (Results 126 - 150 of 880) sorted by null

1 2 3 4 56 7 8 91011>>

  /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/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/service/carrier/
CarrierService.java 15 package android.service.carrier;
18 import android.app.Service;
28 * A service that exposes carrier-specific functionality to the system.
30 * To extend this class, you must declare the service in your manifest file to require the
32 * filter with the {@link #CARRIER_SERVICE_INTERFACE}. If the service should have a long-lived
33 * binding, set android.service.carrier.LONG_LIVED_BINDING to true in the service's metadata.
38 * <service android:name=".MyCarrierService"
42 * <action android:name="android.service.carrier.CarrierService" />
44 * <meta-data android:name="android.service.carrier.LONG_LIVED_BINDING
    [all...]
  /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/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/compat/java/android/support/v4/app/
ServiceCompat.java 22 import android.app.Service;
31 * Helper for accessing features in {@link android.app.Service}.
40 * Constant to return from {@link android.app.Service#onStartCommand}: if this
41 * service's process is killed while it is started (after returning from
42 * {@link android.app.Service#onStartCommand}), then leave it in the started
44 * re-create the service. Because it is in the started state, it will
45 * guarantee to call {@link android.app.Service#onStartCommand} after creating
46 * the new service instance; if there are not any pending start commands to be
47 * delivered to the service, it will be called with a null intent
51 * and stopped to run for arbitrary periods of time, such as a service
    [all...]
  /frameworks/support/lifecycle/extensions/src/main/java/android/arch/lifecycle/
LifecycleService.java 19 import android.app.Service;
26 * A Service that is also a {@link LifecycleOwner}.
28 public class LifecycleService extends Service implements LifecycleOwner {
56 // In usual service super.onStartCommand is no-op, but in LifecycleService
  /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 {
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Dxe/
Pcd.inf 312 Service.c
313 Service.h
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/PCD/Pei/
Pcd.inf 2 # PCD PEIM produces PCD database to manage all dynamic PCD in PEI phase and install Pcd Ppi service.
310 Service.c
311 Service.h
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Provider2Test.java 131 // Regression Test for Provider.Service.getAlias(), which is an package
137 Provider.Service service = new Provider.Service(mockProvider, local
139 mockProvider.putService(service);
162 public void putService(Provider.Service service) {
163 super.putService(service);
166 public void removeService(Provider.Service service) {
    [all...]
  /cts/tests/tests/shortcutmanager/throttling/src/android/content/pm/cts/shortcutmanager/throttling/
BgService.java 20 import android.app.Service;
31 * Make sure that when only a bg service is running, shortcut manager calls are throttled.
33 public class BgService extends Service {
57 return Service.START_NOT_STICKY;
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
AudioTestService.java 20 import android.app.Service;
29 * This is the Service being created during the first onStart() in the activity.
30 * Threads that are needed for the test will be created under this Service.
31 * At the end of the test, this Service will pass the test results back to LoopbackActivity.
34 public class AudioTestService extends Service {
43 log("Audio Test Service created!");
49 log("Service onStartCommand: " + startId);
51 return Service.START_NOT_STICKY;
56 * This method will run the Service as Foreground Service, so the Service won't be kille
    [all...]
  /external/flatbuffers/grpc/src/compiler/
schema_interface.h 71 // An abstract interface representing a service.
72 struct Service {
73 virtual ~Service() {}
106 virtual std::unique_ptr<const Service> service(int i) const = 0;
  /external/guava/guava/src/com/google/common/util/concurrent/
Service.java 30 * <p>The normal lifecycle of a service is:
39 * <p>There are deviations from this if there are failures or if {@link Service#stopAsync} is called
40 * before the {@link Service} reaches the {@linkplain State#RUNNING RUNNING} state. The set of legal
43 * and {@link State#TERMINATED} states are terminal states, once a service enters either of these
52 * @since 9.0 (in 1.0 as {@code com.google.common.base.Service})
55 public interface Service {
57 * If the service state is {@link State#NEW}, this initiates service startup and returns
58 * immediately. A stopped service may not be restarted.
61 * @throws IllegalStateException if the service is not {@link State#NEW
    [all...]
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowService.java 5 import android.app.Service;
16 @Implements(Service.class)
18 @RealObject Service realService;
76 ((ShadowApplication) shadowOf(getApplicationContext())).assertNoBroadcastListenersRegistered(realService, "Service");

Completed in 1622 milliseconds

1 2 3 4 56 7 8 91011>>