HomeSort by relevance Sort by last modified time
    Searched refs:serviceIntent (Results 1 - 15 of 15) 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);
CallLogNotificationsHelper.java 51 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class);
52 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS);
53 context.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 231 Intent serviceIntent = new Intent(
233 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
235 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
236 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
237 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
239 serviceIntent.putParcelableArrayListExtra(
247 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
248 return serviceIntent;
318 Intent serviceIntent = new Intent(
320 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT)
    [all...]
  /packages/services/Telephony/src/com/android/phone/
CallHandlerServiceProxy.java 325 final Intent serviceIntent = new Intent(ICallHandlerService.class.getName());
329 serviceIntent.setComponent(component);
330 return serviceIntent;
341 final Intent serviceIntent = getInCallServiceIntent(mContext);
343 Log.d(TAG, "binding to service " + serviceIntent);
352 final List<ResolveInfo> services = packageManger.queryIntentServices(serviceIntent,
377 serviceIntent.setComponent(new ComponentName(serviceInfo.packageName,
380 Log.d(TAG, "binding to service " + serviceIntent);
382 if (!mContext.bindService(serviceIntent, mConnection,
386 serviceIntent.getComponent())
    [all...]
  /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);
  /packages/apps/Email/src/com/android/email/service/
EmailServiceUtils.java 85 final Intent serviceIntent = getServiceIntent(info);
86 serviceIntent.putExtra(ServiceProxy.EXTRA_FORCE_SHUTDOWN, true);
87 context.startService(serviceIntent);
97 final Intent serviceIntent = getServiceIntent(info);
98 context.startService(serviceIntent);
108 final Intent serviceIntent = getServiceIntent(info);
109 context.startService(serviceIntent);
152 final Intent serviceIntent = getServiceIntent(info);
153 return new EmailServiceProxy(context, serviceIntent).test();
157 final Intent serviceIntent = new Intent(info.intentAction)
    [all...]
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 270 Intent serviceIntent = new Intent(RecognitionService.SERVICE_INTERFACE);
282 serviceIntent.setComponent(ComponentName.unflattenFromString(serviceComponent));
284 serviceIntent.setComponent(mServiceComponent);
287 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 286 Intent serviceIntent = ContactSaveService.createNewRawContactIntent(
289 startService(serviceIntent);
PeopleActivity.java     [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 238 final Intent serviceIntent = ContactUpdateService.createSetSuperPrimaryIntent(
240 activity.startService(serviceIntent);
  /frameworks/base/services/java/com/android/server/
TextServicesManagerService.java 479 final Intent serviceIntent = new Intent(SpellCheckerService.SERVICE_INTERFACE);
480 serviceIntent.setComponent(info.getComponent());
484 if (!bindCurrentSpellCheckerService(serviceIntent, connection, Context.BIND_AUTO_CREATE)) {
    [all...]

Completed in 725 milliseconds