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

1 2 3

  /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/Exchange/src/com/android/exchange/
MailboxAlarmReceiver.java 35 context.startService(new Intent(context, ExchangeService.class));
  /packages/apps/Stk/src/com/android/stk/
StkLauncherActivity.java 35 startService(new Intent(this, StkAppService.class).putExtras(args));
BootCompletedReceiver.java 38 context.startService(new Intent(context, StkAppService.class)
StkCmdReceiver.java 48 context.startService(new Intent(context, StkAppService.class)
55 context.startService(new Intent(context, StkAppService.class)
ToneDialog.java 131 startService(new Intent(this, StkAppService.class).putExtras(args));
StkDialogActivity.java 158 startService(new Intent(this, StkAppService.class).putExtras(args));
StkMenuActivity.java 330 mContext.startService(new Intent(mContext, StkAppService.class)
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 40 public static void startService(Context context, String intentAction) {
41 context.startService(new Intent(intentAction));
64 startService(context, EmailServiceProxy.EXCHANGE_INTENT);
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 63 context.startService(
70 context.startService(
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 46 context.startService(new Intent(context, UpdateService.class));
  /packages/apps/Exchange/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java 57 context.startService(i);
83 startService(new Intent(this, ExchangeService.class));
  /packages/apps/Mms/src/com/android/mms/transaction/
MmsSystemEventReceiver.java 53 context.startService(new Intent(context, TransactionService.class));
MmsMessageSender.java 93 mContext.startService(new Intent(mContext, TransactionService.class));
135 context.startService(new Intent(context, TransactionService.class));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 56 startService(context);
62 startService(context);
67 startService(context);
70 startService(context);
212 private void startService(Context context) {
213 context.startService(new Intent(context, DownloadService.class));
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
WordWidget.java 47 context.startService(new Intent(context, UpdateService.class));
  /development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
WordWidget.java 48 context.startService(new Intent(context, UpdateService.class));
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarReceiver.java 66 context.startService(new Intent(context, RemoveScheduledAlarmsEmptyService.class));
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader5.java 147 startService(basicStartIntent);
174 startService(requeryIntent, startupVals);
204 startService(startIntent);
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 52 * test methods calls {@link #startService} or {@link #bindService}. This gives you an
57 * When one of your test methods calls {@link #startService ServiceTestCase.startService()}
60 * {@link android.app.Service#startService(Intent) Service.startService(Intent)} or
86 * startService() or bindService(). The test framework provides a
118 * a test calls {@link #startService} or {@link #bindService}.
142 * (Context, Application) to it. This is called automatically by {@link #startService} or
174 * {@link android.content.Context#startService(Intent) Context.startService(Intent)} wit
    [all...]
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/
TrackerActivity.java 96 startService(new Intent(TrackerActivity.this,
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppReceiver.java 68 context.startService(new Intent(context, BluetoothOppService.class));
  /cts/tests/tests/app/src/android/app/cts/
ServiceTest.java 142 mContext.startService(new Intent(service).putExtras(bundle));
145 mContext.startService(new Intent(service).putExtras(bundle));
160 mContext.startService(service);
170 * In this mode, it's started by calling Context.startService()
174 * no matter how many times startService() was called.
191 mContext.startService(service);
222 mContext.startService(service);
248 mContext.startService(service);
  /frameworks/base/test-runner/src/android/test/mock/
MockContext.java 322 public ComponentName startService(Intent service) {

Completed in 824 milliseconds

1 2 3