HomeSort by relevance Sort by last modified time
    Searched refs:serviceIntent (Results 1 - 21 of 21) 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 36 Intent serviceIntent = new Intent(context, CallLogNotificationsService.class);
37 serviceIntent.setAction(CallLogNotificationsService.ACTION_UPDATE_NOTIFICATIONS);
38 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 228 Intent serviceIntent = new Intent(
230 serviceIntent.setAction(ContactSaveService.ACTION_NEW_RAW_CONTACT);
232 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_NAME, account.name);
233 serviceIntent.putExtra(ContactSaveService.EXTRA_ACCOUNT_TYPE, account.type);
234 serviceIntent.putExtra(ContactSaveService.EXTRA_DATA_SET, account.dataSet);
236 serviceIntent.putParcelableArrayListExtra(
244 serviceIntent.putExtra(ContactSaveService.EXTRA_CALLBACK_INTENT, callbackIntent);
245 return serviceIntent;
315 Intent serviceIntent = new Intent(
317 serviceIntent.setAction(ContactSaveService.ACTION_SAVE_CONTACT)
    [all...]
  /developers/build/prebuilts/gradle/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
MainActivity.java 62 Intent serviceIntent = new Intent(ResponderService.ACTION_INCOMING);
63 startService(serviceIntent);
72 Intent serviceIntent = new Intent(ACTION_GET_CONVERSATION);
73 startService(serviceIntent);
  /developers/samples/android/wearable/wear/ElizaChat/Application/src/main/java/com/example/android/wearable/elizachat/
MainActivity.java 62 Intent serviceIntent = new Intent(ResponderService.ACTION_INCOMING);
63 startService(serviceIntent);
72 Intent serviceIntent = new Intent(ACTION_GET_CONVERSATION);
73 startService(serviceIntent);
  /development/samples/browseable/ElizaChat/Application/src/com.example.android.wearable.elizachat/
MainActivity.java 62 Intent serviceIntent = new Intent(ResponderService.ACTION_INCOMING);
63 startService(serviceIntent);
72 Intent serviceIntent = new Intent(ACTION_GET_CONVERSATION);
73 startService(serviceIntent);
  /packages/apps/ContactsCommon/src/com/android/contacts/common/location/
UpdateCountryService.java 33 final Intent serviceIntent = new Intent(context, UpdateCountryService.class);
34 serviceIntent.setAction(ACTION_UPDATE_COUNTRY);
35 serviceIntent.putExtra(UpdateCountryService.KEY_INTENT_LOCATION, location);
36 context.startService(serviceIntent);
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DirectoryContactUtil.java 43 Intent serviceIntent = ContactSaveService.createNewRawContactIntent(
46 context.startService(serviceIntent);
  /packages/services/Telecomm/src/com/android/server/telecom/
ServiceBinder.java 83 Intent serviceIntent = new Intent(mServiceAction).setComponent(mComponentName);
86 Log.d(ServiceBinder.this, "Binding to service with intent: %s", serviceIntent);
89 binding = mContext.bindServiceAsUser(serviceIntent, connection,
92 binding = mContext.bindService(serviceIntent, connection,
InCallController.java 282 Intent serviceIntent = new Intent(InCallService.SERVICE_INTERFACE);
284 for (ResolveInfo entry : packageManager.queryIntentServices(serviceIntent, 0)) {
  /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/provider_src/com/android/email/service/
EmailServiceUtils.java 92 final Intent serviceIntent = getServiceIntent(info);
93 serviceIntent.putExtra(ServiceProxy.EXTRA_FORCE_SHUTDOWN, true);
94 context.startService(serviceIntent);
104 final Intent serviceIntent = getServiceIntent(info);
105 context.startService(serviceIntent);
115 final Intent serviceIntent = getServiceIntent(info);
116 context.startService(serviceIntent);
159 final Intent serviceIntent = getServiceIntent(info);
160 return new EmailServiceProxy(context, serviceIntent).test();
164 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)) {
  /frameworks/base/tests/OneMedia/src/com/android/onemedia/
PlayerController.java 58 public PlayerController(Activity context, Intent serviceIntent) {
60 if (serviceIntent == null) {
63 mServiceIntent = serviceIntent;
  /frameworks/base/services/voiceinteraction/java/com/android/server/voiceinteraction/
VoiceInteractionManagerServiceImpl.java 113 Intent serviceIntent = new Intent(VoiceInteractionService.SERVICE_INTERFACE);
114 serviceIntent.setComponent(mSessionComponentName);
115 mBound = mContext.bindServiceAsUser(serviceIntent, this,
  /cts/tests/tests/content/src/android/content/cts/
BroadcastReceiverTest.java 94 Intent serviceIntent = new Intent(context, MockService.class);
95 mIBinder = peekService(context, serviceIntent);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastReceiver.java 186 Intent serviceIntent = new Intent(CellBroadcastConfigService.ACTION_ENABLE_CHANNELS,
188 context.startService(serviceIntent);
  /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/core/java/com/android/server/
TextServicesManagerService.java 548 final Intent serviceIntent = new Intent(SpellCheckerService.SERVICE_INTERFACE);
549 serviceIntent.setComponent(info.getComponent());
553 if (!bindCurrentSpellCheckerService(serviceIntent, connection, Context.BIND_AUTO_CREATE)) {
    [all...]

Completed in 750 milliseconds