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

1 2 3

  /hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
BootReceiver.java 34 context.startService(new Intent("com.ti.server.FmService"));
  /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/exchange2/src/com/android/exchange/
MailboxAlarmReceiver.java 35 context.startService(new Intent(context, ExchangeService.class));
  /packages/apps/OneTimeInitializer/src/com/android/onetimeinitializer/
OneTimeInitializerReceiver.java 36 context.startService(new Intent(context, OneTimeInitializerService.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 135 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/apps/Mms/src/com/android/mms/transaction/
MmsSystemEventReceiver.java 52 context.startService(new Intent(context, TransactionService.class));
MmsMessageSender.java 124 mContext.startService(new Intent(mContext, TransactionService.class));
167 context.startService(new Intent(context, TransactionService.class));
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 61 context.startService(
68 context.startService(
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 46 context.startService(new Intent(context, UpdateService.class));
  /packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java 57 context.startService(i);
83 startService(new Intent(this, ExchangeService.class));
  /packages/providers/DownloadProvider/src/com/android/providers/downloads/
DownloadReceiver.java 71 startService(context);
77 startService(context);
83 startService(context);
86 startService(context);
239 private void startService(Context context) {
240 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));
  /development/samples/MySampleRss/src/com/example/codelab/rssexample/
MyRssReader5.java 147 startService(basicStartIntent);
174 startService(requeryIntent, startupVals);
204 startService(startIntent);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowContextWrapper.java 129 public ComponentName startService(Intent service) {
130 return getApplicationContext().startService(service);
  /frameworks/base/test-runner/src/android/test/
ServiceTestCase.java 58 * test methods calls {@link #startService} or {@link #bindService}. This gives you an
63 * When one of your test methods calls {@link #startService ServiceTestCase.startService()}
66 * {@link android.app.Service#startService(Intent) Service.startService(Intent)} or
92 * startService() or bindService(). The test framework provides a
124 * a test calls {@link #startService} or {@link #bindService}.
148 * (Context, Application) to it. This is called automatically by {@link #startService} or
180 * {@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 69 context.startService(new Intent(context, BluetoothOppService.class));

Completed in 622 milliseconds

1 2 3