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

1 2 3 4 5 6 7 8 91011

  /development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
MusicIntentReceiver.java 39 context.startService(new Intent(MusicService.ACTION_PAUSE));
49 context.startService(new Intent(MusicService.ACTION_TOGGLE_PLAYBACK));
52 context.startService(new Intent(MusicService.ACTION_PLAY));
55 context.startService(new Intent(MusicService.ACTION_PAUSE));
58 context.startService(new Intent(MusicService.ACTION_STOP));
61 context.startService(new Intent(MusicService.ACTION_SKIP));
66 context.startService(new Intent(MusicService.ACTION_REWIND));
MainActivity.java 78 startService(new Intent(MusicService.ACTION_PLAY));
80 startService(new Intent(MusicService.ACTION_PAUSE));
82 startService(new Intent(MusicService.ACTION_SKIP));
84 startService(new Intent(MusicService.ACTION_REWIND));
86 startService(new Intent(MusicService.ACTION_STOP));
113 startService(i);
128 startService(new Intent(MusicService.ACTION_TOGGLE_PLAYBACK));
  /packages/apps/Bluetooth/src/com/android/bluetooth/pbap/
BluetoothPbapReceiver.java 58 boolean startService = true;
67 startService = false;
73 startService = false;
76 if (startService) {
78 context.startService(in);
  /packages/apps/Camera2/src/com/android/camera/processing/
ProcessingServiceManager.java 87 startService();
145 startService();
155 private void startService() {
156 mAppContext.startService(new Intent(mAppContext, ProcessingService.class));
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainBroadcastReceiver.java 12 context.startService(intent);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/dictionarypack/
EventHandler.java 44 context.startService(intent);
  /development/samples/training/notify-user/src/com/example/android/pingme/
ResultActivity.java 41 startService(intent);
47 startService(intent);
  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogReceiver.java 41 context.startService(serviceIntent);
45 context.startService(serviceIntent);
CallLogNotificationsHelper.java 38 context.startService(serviceIntent);
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ituxdApp.java 38 startService(new Intent(this, ThermalService.class));
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusReceiver.java 32 context.startService(intent);
  /packages/apps/OneTimeInitializer/src/com/android/onetimeinitializer/
OneTimeInitializerReceiver.java 36 context.startService(new Intent(context, OneTimeInitializerService.class));
  /frameworks/base/services/java/com/android/server/
SystemServer.java 312 Installer installer = mSystemServiceManager.startService(Installer.class);
315 mActivityManagerService = mSystemServiceManager.startService(
324 mPowerManagerService = mSystemServiceManager.startService(PowerManagerService.class);
332 mDisplayManagerService = mSystemServiceManager.startService(DisplayManagerService.class);
369 mSystemServiceManager.startService(LightsService.class);
372 mSystemServiceManager.startService(BatteryService.class);
375 mSystemServiceManager.startService(UsageStatsService.class);
382 mSystemServiceManager.startService(WebViewUpdateService.class);
432 mSystemServiceManager.startService(TelecomLoaderService.class);
468 mSystemServiceManager.startService(AlarmManagerService.class)
    [all...]
  /development/samples/Alarm/tests/src/com/example/android/newalarm/
AlarmServiceTest.java 67 * Tests the service's onCreate() method. Starts the service using startService(Intent)
71 this.startService(mStartServiceIntent);
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/invalidation/
InvalidationController.java 46 mContext.startService(registerIntent);
80 mContext.startService(registerIntent);
88 mContext.startService(intent);
97 mContext.startService(intent);
  /external/deqp/android/package/src/com/drawelements/deqp/execserver/
ServiceStarter.java 42 startService(svc);
  /frameworks/base/tests/VoiceInteraction/src/com/android/test/voiceinteraction/
VoiceInteractionMain.java 46 startService(new Intent(VoiceInteractionMain.this, MainInteractionService.class));
  /packages/apps/Mms/tests/src/com/android/mms/util/
SendIntentTests.java 43 getContext().startService(intent);
  /packages/experimental/NotificationShowcase/src/com/android/example/notificationshowcase/
NotificationShowcaseActivity.java 19 startService(intent);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProviderBroadcastReceiver.java 40 context.startService(intent);
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/matchers/
StartedServiceMatcherTest.java 54 service.startService(actualIntent);
58 service.startService(actualIntent);
62 service.startService(actualIntent);
  /packages/apps/Music/src/com/android/music/
MediaButtonIntentReceiver.java 65 context.startService(i);
128 context.startService(i);
132 context.startService(i);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
NotifyingController.java 49 startService(new Intent(NotifyingController.this,
  /development/samples/ApiDemos/tests/src/com/example/android/apis/app/
LocalServiceTest.java 67 startService(startIntent);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BootReceiver.java 40 context.startService(loadavg);

Completed in 941 milliseconds

1 2 3 4 5 6 7 8 91011