HomeSort by relevance Sort by last modified time
    Searched refs:serviceIntent (Results 1 - 16 of 16) sorted by null

  /packages/apps/Dialer/src/com/android/dialer/calllog/
CallLogReceiver.java 37 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class);
38 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS);
39 serviceIntent.putExtra(
41 context.startService(serviceIntent);
43 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class);
44 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS);
45 context.startService(serviceIntent);
CallLogFragment.java 571 Intent serviceIntent = new Intent(getActivity(), CallLogNotificationsService.class);
572 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS);
573 getActivity().startService(serviceIntent);
  /packages/apps/Dialer/src/com/android/dialer/contact/
ContactUpdateService.java 39 Intent serviceIntent = new Intent(context, ContactUpdateService.class);
40 serviceIntent.putExtra(EXTRA_PHONE_NUMBER_DATA_ID, dataId);
41 return serviceIntent;
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 227 Intent serviceIntent = new Intent(
229 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
231 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
232 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
233 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
235 serviceIntent.putParcelableArrayListExtra(
243 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
244 return serviceIntent;
314 Intent serviceIntent = new Intent(
316 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT)
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
TestsListActivity.java 92 Intent serviceIntent = new Intent(this, ManagerService.class);
93 serviceIntent.putExtra("path", path);
94 startService(serviceIntent);
  /development/samples/WiFiDirectDemo/src/com/example/android/wifidirect/
DeviceDetailFragment.java 129 Intent serviceIntent = new Intent(getActivity(), FileTransferService.class);
130 serviceIntent.setAction(FileTransferService.ACTION_SEND_FILE);
131 serviceIntent.putExtra(FileTransferService.EXTRAS_FILE_PATH, uri.toString());
132 serviceIntent.putExtra(FileTransferService.EXTRAS_GROUP_OWNER_ADDRESS,
134 serviceIntent.putExtra(FileTransferService.EXTRAS_GROUP_OWNER_PORT, 8988);
135 getActivity().startService(serviceIntent);
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 264 Intent serviceIntent = new Intent(RecognitionService.SERVICE_INTERFACE);
276 serviceIntent.setComponent(ComponentName.unflattenFromString(serviceComponent));
278 serviceIntent.setComponent(mServiceComponent);
281 if (!mContext.bindService(serviceIntent, mConnection, Context.BIND_AUTO_CREATE)) {
  /cts/tests/tests/content/src/android/content/cts/
BroadcastReceiverTest.java 96 Intent serviceIntent = new Intent(context, MockService.class);
97 mIBinder = peekService(context, serviceIntent);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 184 Intent serviceIntent = new Intent(CellBroadcastConfigService.ACTION_ENABLE_CHANNELS,
186 context.startService(serviceIntent);
  /packages/apps/Contacts/src/com/android/contacts/activities/
ContactDetailActivity.java 304 Intent serviceIntent = ContactSaveService.createNewRawContactIntent(
307 startService(serviceIntent);
PeopleActivity.java     [all...]
  /packages/apps/Email/src/com/android/email/service/
AttachmentDownloadService.java 712 Intent serviceIntent = mAccountServiceMap.get(accountId);
713 if (serviceIntent == null) {
716 serviceIntent = new Intent(mContext, ControllerService.class);
718 serviceIntent = new Intent(EmailServiceProxy.EXCHANGE_INTENT);
720 mAccountServiceMap.put(accountId, serviceIntent);
722 return serviceIntent;
    [all...]
  /cts/tests/tests/content/src/android/content/pm/cts/
PackageManagerTest.java 97 Intent serviceIntent = new Intent(SERVICE_ACTION_NAME);
98 List<ResolveInfo> services = mPackageManager.queryIntentServices(serviceIntent,
  /packages/apps/Dialer/src/com/android/dialer/interactions/
PhoneNumberInteraction.java 236 final Intent serviceIntent = ContactUpdateService.createSetSuperPrimaryIntent(
238 activity.startService(serviceIntent);
  /frameworks/base/services/java/com/android/server/
TextServicesManagerService.java 477 final Intent serviceIntent = new Intent(SpellCheckerService.SERVICE_INTERFACE);
478 serviceIntent.setComponent(info.getComponent());
482 if (!bindCurrentSpellCheckerService(serviceIntent, connection, Context.BIND_AUTO_CREATE)) {
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertReceiver.java 110 Intent serviceIntent = new Intent(context, DismissAlarmsService.class);
111 context.startService(serviceIntent);
    [all...]

Completed in 642 milliseconds