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

1 2 3 4 5 6 7

  /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 56 boolean startService = true;
62 startService = false;
68 startService = false;
71 if (startService) {
72 context.startService(in);
  /hardware/ti/wpan/tools/FM/service/src/java/com/ti/server/
BootReceiver.java 34 context.startService(new Intent("com.ti.server.FmService"));
  /packages/apps/KeyChain/src/com/android/keychain/
KeyChainBroadcastReceiver.java 12 context.startService(intent);
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallLogReceiver.java 41 context.startService(serviceIntent);
45 context.startService(serviceIntent);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/
MailboxAlarmReceiver.java 35 context.startService(new Intent(context, ExchangeService.class));
  /packages/apps/Mms/src/com/android/mms/transaction/
MessageStatusReceiver.java 32 context.startService(intent);
  /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)
  /cts/hostsidetests/appsecurity/test-apps/PermissionDeclareApp/src/com/android/cts/permissiondeclareapp/
GrantUriPermission.java 34 context.startService(newIntent);
  /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);
  /packages/apps/Mms/tests/src/com/android/mms/util/
SendIntentTests.java 43 getContext().startService(intent);
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarProviderBroadcastReceiver.java 40 context.startService(intent);
  /packages/providers/DownloadProvider/tests/src/com/android/providers/downloads/
ThreadingTest.java 45 * Test for race conditions when the service is flooded with startService() calls while running
52 startService(null);
  /packages/apps/Exchange/exchange2/src/com/android/exchange/service/
ExchangeBroadcastProcessorService.java 57 context.startService(i);
83 startService(new Intent(this, ExchangeService.class));
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 63 context.startService(
70 context.startService(
  /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/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);
  /packages/experimental/ExampleImsFramework/src/com/android/example/imsframework/
ImsFrameworkReceiver.java 34 if (context.startService(intent) == null) {
  /cts/tests/tests/app/src/android/app/cts/
IntentServiceTest.java 58 mContext.startService(addIntent);
86 mContext.startService(mIntent);

Completed in 372 milliseconds

1 2 3 4 5 6 7