/cts/tests/tests/os/src/android/os/cts/ |
CrossProcessExceptionService.java | 21 import android.app.Service; 31 public class CrossProcessExceptionService extends Service {
|
/development/samples/KeyChainDemo/src/com/example/android/keychain/ |
SecureWebServerService.java | 21 import android.app.Service; 26 public class SecureWebServerService extends Service {
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/media/ |
AudioManagerFacade.java | 19 import android.app.Service; 31 private final Service mService;
|
/external/sl4a/ScriptingLayer/src/com/googlecode/android_scripting/ |
AndroidProxy.java | 19 import android.app.Service; 39 * @param service 40 * Android service (required to build facades). 46 public AndroidProxy(Service service, Intent intent, boolean requiresHandshake) { 53 new FacadeManagerFactory(FacadeConfiguration.getSdkLevel(), service, intent,
|
/external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/activity/ |
ServiceUtils.java | 21 import android.app.Service; 30 * A utility class supplying helper methods for {@link Service} objects. 38 * Marks the service as a foreground service. This uses reflection to figure out whether the new 39 * APIs for marking a service as a foreground service are available. If not, it falls back to the 42 * @param service 43 * the service to put in foreground mode 49 public static void setForeground(Service service, Integer notificationId [all...] |
/external/sl4a/Utils/src/com/googlecode/android_scripting/ |
ForegroundService.java | 21 import android.app.Service; 25 public abstract class ForegroundService extends Service {
|
/frameworks/base/core/java/android/app/job/ |
JobService.java | 19 import android.app.Service; 37 * <p>This service executes each incoming job on a {@link android.os.Handler} running on your 44 public abstract class JobService extends Service { 51 * <service android:name="MyJobService" 54 * </service> 57 * <p>If a job service is declared in the manifest but not protected with this 58 * permission, that service will be ignored by the OS. 90 * @return True if your service needs to process the work (on a separate thread). False if
|
/frameworks/base/core/java/android/service/chooser/ |
ChooserTargetService.java | 18 package android.service.chooser; 21 import android.app.Service; 32 * A service that receives calls from the system when the user is asked to choose 43 * <p>To extend this class, you must declare the service in your manifest file with 47 * <service android:name=".MyChooserTargetService" 51 * <action android:name="android.service.chooser.ChooserTargetService" /> 53 * </service> 56 * <p>For the system to query your service, you must add a <meta-data> element to the 63 * <code>android.service.chooser.chooser_target_service</code> and a value corresponding to 64 * the component name of your service. Example:</p [all...] |
/frameworks/base/core/java/android/service/vr/ |
VrListenerService.java | 17 package android.service.vr; 22 import android.app.Service; 32 * A service that is bound from the system while running in virtual reality (VR) mode. 34 * <p>To extend this class, you must declare the service in your manifest file with 38 * <service android:name=".VrListener" 42 * <action android:name="android.service.vr.VrListenerService" /> 44 * </service> 47 * <p>This service is bound when the system enters VR mode and is unbound when the system leaves VR 51 * service if the VR application has specifically targeted this service by specifyin [all...] |
/frameworks/base/core/java/com/android/internal/util/ |
AsyncService.java | 19 import android.app.Service; 28 * A service that receives Intents and IBinder transactions 35 abstract public class AsyncService extends Service { 58 * For instance @see android.app.Service#START_STICKY 66 * Create the service's handler returning AsyncServiceInfo. 108 * Called when service is destroyed. After returning the 109 * service is dead and no more processing should be expected
|
/frameworks/base/core/tests/utiltests/src/android/util/ |
RemoteMemoryIntArrayService.java | 19 import android.app.Service; 26 * Service to interact with a {@link MemoryIntArray} in another process. 28 public class RemoteMemoryIntArrayService extends Service {
|
/frameworks/base/media/packages/BluetoothMidiService/src/com/android/bluetoothmidiservice/ |
BluetoothMidiService.java | 19 import android.app.Service; 29 public class BluetoothMidiService extends Service {
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/ |
SystemUISecondaryUserService.java | 19 import android.app.Service; 26 public class SystemUISecondaryUserService extends Service { 45 pw.println("dumping service: " + ui.getClass().getName());
|
SystemUIService.java | 19 import android.app.Service; 28 public class SystemUIService extends Service { 51 pw.println("dumping service: " + ui.getClass().getName());
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/doze/ |
DozeScreenState.java | 26 private final DozeMachine.Service mDozeService; 32 public DozeScreenState(DozeMachine.Service service, Handler handler) { 33 mDozeService = service;
|
/frameworks/base/packages/SystemUI/src/com/android/systemui/screenshot/ |
TakeScreenshotService.java | 19 import android.app.Service; 30 public class TakeScreenshotService extends Service {
|
/frameworks/base/packages/WAPPushManager/tests/src/com/android/smspush/unitTests/ |
DataVerify.java | 19 import android.app.Service; 30 public class DataVerify extends Service {
|
/frameworks/base/telecomm/java/android/telecom/ |
AuthenticatorService.java | 22 import android.app.Service; 29 * A generic stub account authenticator service often used for sync adapters that do not directly 34 public class AuthenticatorService extends Service {
|
/frameworks/base/tests/ServiceCrashTest/src/com/android/tests/servicecrashtest/ |
MainActivity.java | 20 import android.app.Service; 40 public void onServiceConnected(ComponentName name, IBinder service) { 41 Log.i(TAG, "Service connected"); 46 Log.i(TAG, "Service disconnected"); 66 bindService(intent, mServiceConnection, Service.BIND_AUTO_CREATE);
|
/frameworks/multidex/library/jack-meta/ |
legacyMultidexInstallation.jpp | 26 | class android.app.Service
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/ |
HapticFeedbackController.java | 3 import android.app.Service; 44 mVibrator = (Vibrator) mContext.getSystemService(Service.VIBRATOR_SERVICE);
|
/packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/ |
CellBroadcastServiceTestCase.java | 19 import android.app.Service; 32 public abstract class CellBroadcastServiceTestCase<T extends Service> extends ServiceTestCase<T> { 61 public ComponentName startService(Intent service) { 62 mServiceIntentToVerify = service; 82 Log.d(TAG, "return real service " + name);
|
/packages/apps/Contacts/src/com/android/contacts/ |
ViewNotificationService.java | 19 import android.app.Service; 31 * Service that sends out a view notification for a contact. At the moment, this is only 34 public class ViewNotificationService extends Service { 57 // startId will stop this service. In practice, this shouldn't be a problem, 58 // as this service is supposed to be called by the Phone app which only sends 63 Log.e(TAG, "Error stopping service", e);
|
/packages/apps/Email/provider_src/com/android/email/service/ |
AccountService.java | 17 package com.android.email.service; 19 import android.app.Service; 30 import com.android.emailcommon.service.IAccountService; 35 public class AccountService extends Service {
|
/packages/experimental/StrictModeTest/src/com/android/strictmodetest/ |
ServiceBase.java | 19 import android.app.Service; 34 public class ServiceBase extends Service {
|