HomeSort by relevance Sort by last modified time
    Searched refs:IntentService (Results 1 - 25 of 150) sorted by null

1 2 3 4 5 6

  /cts/hostsidetests/appsecurity/test-apps/SplitApp/feature/src/com/android/cts/splitapp/
FeatureService.java 19 import android.app.IntentService;
22 public class FeatureService extends IntentService {
  /cts/hostsidetests/appsecurity/test-apps/EncryptionApp/src/com/android/cts/encryptionapp/
AwareService.java 21 import android.app.IntentService;
25 public class AwareService extends IntentService {
32 Log.v(AWARE, "IntentService.onHandleIntent()");
UnawareService.java 21 import android.app.IntentService;
25 public class UnawareService extends IntentService {
32 Log.v(UNAWARE, "IntentService.onHandleIntent()");
  /cts/tests/tests/telephony/src/android/telephony/cts/
HeadlessSmsSendService.java 20 import android.app.IntentService;
29 public class HeadlessSmsSendService extends IntentService {
31 * Creates an IntentService. Invoked by your subclass's constructor.
  /development/samples/SampleSyncAdapter/src/com/example/android/samplesync/notifier/
NotifierService.java 18 import android.app.IntentService;
26 public class NotifierService extends IntentService {
  /development/samples/devbytes/telephony/SmsSampleProject/app/src/main/java/com/example/android/smssample/service/
RespondService.java 19 import android.app.IntentService;
29 public class RespondService extends IntentService {
MessagingService.java 19 import android.app.IntentService;
30 public class MessagingService extends IntentService {
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
EmlTempFileDeletionService.java 20 import android.app.IntentService;
25 * {@link IntentService} that cleans up temporary files in the cache for the eml viewer.
27 public class EmlTempFileDeletionService extends IntentService {
  /development/samples/ShortcutDemo/publisher/src/com/example/android/pm/shortcutdemo/
ShortcutPublishingService.java 18 import android.app.IntentService;
37 public class ShortcutPublishingService extends IntentService {
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/content/
SimpleWakefulService.java 20 import android.app.IntentService;
25 public class SimpleWakefulService extends IntentService {
  /packages/apps/Dialer/java/com/android/dialer/interactions/
ContactUpdateService.java 19 import android.app.IntentService;
25 public class ContactUpdateService extends IntentService {
  /cts/hostsidetests/dumpsys/apps/ProcStatsHelperApp/src/com/android/server/cts/procstatshelper/
ProcStatsHelperServiceBase.java 18 import android.app.IntentService;
23 public class ProcStatsHelperServiceBase extends IntentService {
  /cts/hostsidetests/incident/apps/batterystatsapp/src/com/android/server/cts/device/batterystats/
BatteryStatsBackgroundService.java 23 import android.app.IntentService;
28 public class BatteryStatsBackgroundService extends IntentService {
  /development/samples/ReceiveShareDemo/src/com/example/android/receiveshare/
ReceiveShareService.java 19 import android.app.IntentService;
25 public class ReceiveShareService extends IntentService {
  /development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/provider/
UpdateComplicationDataService.java 3 import android.app.IntentService;
10 * Simple {@link IntentService} subclass for asynchronously requesting an update for the random
13 public class UpdateComplicationDataService extends IntentService {
  /packages/apps/Calendar/src/com/android/calendar/alerts/
InitAlarmsService.java 19 import android.app.IntentService;
32 public class InitAlarmsService extends IntentService {
  /packages/apps/Settings/tests/anomaly-tester/src/com/android/settings/anomaly/tester/service/
AnomalyService.java 20 import android.app.IntentService;
29 public class AnomalyService extends IntentService {
  /cts/tests/app/app/src/android/app/stubs/
IntentServiceStub.java 19 import android.app.IntentService;
26 public class IntentServiceStub extends IntentService {
108 synchronized (IntentService.class) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcherTest.java 3 import android.app.IntentService;
55 assertThat(new StartedServiceMatcher(IntentService.class),
56 givesFailureMessage((Context) service, "to start " + createIntent(IntentService.class) + ", but started " + actualIntent));
59 assertThat(new StartedServiceMatcher(IntentService.class, "view"),
60 givesFailureMessage((Context) service, "to start " + createIntent(IntentService.class, "view") + ", but started " + actualIntent));
  /frameworks/base/core/java/android/app/
IntentService.java 29 * IntentService is a base class for {@link Service}s that handle asynchronous
36 * from an application's main thread. The IntentService class exists to
38 * IntentService and implement {@link #onHandleIntent(Intent)}. IntentService
46 * <p class="note"><b>Note:</b> IntentService is subject to all the
63 public abstract class IntentService extends Service {
82 * Creates an IntentService. Invoked by your subclass's constructor.
86 public IntentService(String name) {
118 HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
134 * You should not override this method for your IntentService. Instead
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PackagesMonitor.java 19 import android.app.IntentService;
43 public static class AsyncService extends IntentService {
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
ToastService.java 19 import android.app.IntentService;
27 public class ToastService extends IntentService {
  /packages/services/Telephony/tests/src/com/android/phone/tests/
SendInstantTextTestService.java 19 import android.app.IntentService;
31 public class SendInstantTextTestService extends IntentService {
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/leanback/
UpdateRecommendationsService.java 17 import android.app.IntentService;
32 public class UpdateRecommendationsService extends IntentService {
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmIntentService.java 21 import android.app.IntentService;
31 * IntentService to set off an alarm.
33 public class AlarmIntentService extends IntentService {

Completed in 1132 milliseconds

1 2 3 4 5 6