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

1 2 3 4 5 6

  /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/Camera2/src/com/android/camera/processing/
ProcessingServiceManager.java 83 startService();
141 startService();
158 private void startService() {
159 mAppContext.startService(new Intent(mAppContext, ProcessingService.class));
  /hardware/intel/common/utils/ituxd/src/com/intel/thermal/
ituxdApp.java 38 startService(new Intent(this, ThermalService.class));
  /packages/apps/Car/Radio/src/com/android/car/radio/
BootupReceiver.java 38 context.startService(new Intent(context, RadioService.class));
  /packages/apps/Stk/src/com/android/stk/
BootCompletedReceiver.java 46 context.startService(new Intent(context, StkAppService.class)
StkCmdReceiver.java 89 context.startService(toService);
95 context.startService(new Intent(context, StkAppService.class)
102 context.startService(new Intent(context, StkAppService.class)
StkMain.java 101 startService(new Intent(this, StkAppService.class)
  /packages/services/Telecomm/src/com/android/server/telecom/components/
TelecomService.java 165 context.startService(new Intent(context, BluetoothPhoneService.class));
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
WifiScanningService.java 53 mImpl.startService();
  /packages/apps/Car/Stream/src/com/android/car/stream/
StreamApplication.java 40 startService(new Intent(this, StreamService.class));
PermissionsActivity.java 79 startService(new Intent(this, StreamService.class));
110 startService(new Intent(this, StreamService.class));
  /packages/apps/CellBroadcastReceiver/tests/unit/src/com/android/cellbroadcastreceiver/
CellBroadcastServiceTestCase.java 61 public ComponentName startService(Intent service) {
  /packages/apps/Terminal/src/com/android/terminal/
TerminalService.java 50 startService(new Intent(this, TerminalService.class));
  /development/apps/BuildWidget/src/com/android/buildwidget/
BuildWidget.java 46 context.startService(new Intent(context, UpdateService.class));
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
InvisibleContactUtil.java 82 ContactSaveService.startService(context, intent);
  /packages/apps/Launcher3/src/com/android/launcher3/util/
TestingUtils.java 33 context.startService(new Intent()
  /packages/providers/MediaProvider/src/com/android/providers/media/
MediaScannerReceiver.java 75 context.startService(
82 context.startService(
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/bluetooth/
BleEncryptedServerBaseActivity.java 60 startService(new Intent(this, BleEncryptedServerService.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));
  /external/caliper/caliper/src/test/java/com/google/caliper/runner/
ServerSocketServiceTest.java 48 @Before public void startService() {
  /frameworks/base/telephony/java/com/android/ims/internal/uce/uceservice/
UceServiceBase.java 39 public boolean startService(IUceListener uceListener) {
  /packages/apps/Messaging/tests/src/com/android/messaging/
FakeContext.java 64 public ComponentName startService(final Intent intent) {
65 // Record that a startService occurred with the intent that was passed.
66 Log.d(TAG, "MockContext receiving startService. intent=" + intent.toString());
69 return super.startService(intent);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/users/
UserSwitchListenerService.java 54 context.startService(new Intent(context, UserSwitchListenerService.class));

Completed in 2062 milliseconds

1 2 3 4 5 6